| 
<?php 
require ('keyhighlighter.class.php');
 
 function my_highlighter ($matches) {
 return '<span style="font-weight: bolder; color: #FF0000;">' . $matches[0] . '</span>';
 }
 
 new keyhighlighter ('W3C', false, 'my_highlighter');
 readfile ('http://www.w3c.org/');
 ?>
 |