function highlight_html($string, $decode = TRUE){
$tag = '#0000ff';
$att = '#ff0000';
$val = '#8000ff';
$com = '#34803a';
$find = array(
'~(\s[a-z].*?=)~', // Highlight the attributes
'~(<\!--.*?-->)~s', // Hightlight comments
'~("[a-zA-Z0-9\/].*?")~', // Highlight the values
'~(<[a-z].*?>)~', // Highlight the beginning of the opening tag
'~(</[a-z].*?>)~', // Highlight the closing tag
'~(&.*?;)~', // Stylize HTML entities
);
$replace = array(
'$1',
'$1',
'$1',
'$1',
'$1',
'$1',
);
if($decode)
$string = htmlentities($string);
return '
'.preg_replace($find, $replace, $string).'
';
}
Review Games
echo highlight_html('

Home

Go & here.






');
?>

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/S3qPylfMgtA/13733