<?php $code='php code comes here'; //fuctie van highlight function return_highlight($buffer){ ob_start(); highlight_string($buffer); $chaine = ob_get_contents(); ob_end_clean(); return $chaine; } if (isset($code)) { $result=return_highlight(stripslashes($code)); } ?> <? echo "<font style=\"font-size: 11px;\" face=\"Verdana\" color=\"#000000\">\n"; echo "$result\n"; echo "</font>\n"; ?>