require ('/home/jensen/addhtml.php'); // functions to add to strings
// add_plain: as plain text, with ending \n
// add_html: as html, with escaping and nl2br, optionally also as plain text
require ('/home/jensen/abuse.php');
?>
Receiving a name
You will be logged!!
".htmlspecialchars($log)."\n";
}
else
die("You didn't fill in your name!
\n");
//ok to write to log
$logfile = fopen("oct6log.txt","a");
fwrite($logfile,$log);
fclose($logfile);
?>
What you see is what has been logged.