thats what its doing yelvington heres the code
function phpHighlight($code){
$code = stripslashes($code);
$code = highlight_string($code, true);
$code = explode("<br />", $code);
$text = "<table bgcolor=\"#B0B9C8\" cellspacing=\"0\" width=\"100%\" border=\"1\">";
for($x=0;$x<sizeof($code);$x++){
$text .= "
<tr>
<td valign=\"top\" bgcolor=#7C8AA4><div align=\"center\" style=\"color: #455064;font-size: 13px;\">".($x+1)."</div></td>
<td class=\"td1\">".$code[$x]."</td>
</tr>";
}
$text .= "</table>";
echo ($text);
}
as for vaska it might be because you dont have frames enabled because that would cause it not to show up (yet) .