The server keeps responding with:
Parse error: parse error in /blah/blah/a.php3 on line 23
line 23 is the
last line!!
<BLOCKQUOTE><font size="1" face="Verdana,Arial,Helvetica">code:</font><HR><pre><?php
if ($HTTP_REFERER="http://www.blahblah.com/feedback.html") {
//get all the inputs from all of the forms
$i=0;
if (!is_array($HTTP_POST_VARS))
return;
reset($HTTP_POST_VARS);
while(list($key, $val) = each($HTTP_POST_VARS)) {
$GLOBALS[$key] = $val;
$val=stripslashes($val);
//mail everything off to admin
$message = $message. "$key : $valn";
}
$mailto= "ckc87@baba.com";
$subject= "abac";
$from= "badff";
$message= "$message";
mail( "$mailto", "$subject", "$message", "From: $from");
}
else {
header("Location: pw.html")
}
?>[/code]
------------------
C.K.C.