' : '>'; $html .= $text; $html .= ''; return $html; } public static function span_box($text) { $html = ' '; $html .= $text; $html .= ' '; return $html; } public static function tag($name, $content, $attributes = false) { $html = '<'. $name; if($attributes) { $html .= $attributes; } $html .= '>'; $html .= $content; $html .= ''; return $html; } }