| 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
 <head>
 <title>CSSProtector Example</title>
 
 <?PHP
 include 'class_cssprotector.php';
 $cp = new cssprotector();
 $cp->head();
 ?>
 
 </head>
 <body>
 <h1>CSSProtector Example</h1>
 The sourcecode of this page looks different whenever it is reloaded.
 
 <?PHP
 
 $cp->write('[email protected]');
 
 ?>
 
 </body></html>
 |