When I run this code:
<?php
header ('Location:http://www.adams-store.webege.com/');
$handle = fopen("comments.html", "a");
foreach($_POST as $Name => $Comment) {
fwrite($handle, $Name);
fwrite($handle, ":");
fwrite($handle, $Comment "<br />");
fwrite($handle, "\r\n");
}
fwrite($handle, "\r\n");
fclose($handle);
?>
I get this PHP Error!:
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /home/a8705835/public_html/commentpost.php on line 7