View Single Post
Old 2006-06-13, 03:17 AM   #2
matt
Trying is the first step towards failure
 
Join Date: Apr 2003
Location: Australia
Posts: 123
Send a message via ICQ to matt
A couple of things i noticed at a glance...

Maybe this:

<? echo $_SERVER['HTTP_REFERER']; ?>

Should be

<? echo urlencode($_SERVER['HTTP_REFERER']); ?>


Or possibly this:

mail("proxy@domain.com", "Hitbot:", "From: $from\r\n");

should be

mail("proxy@domain.com", "Hitbot:", "From: " . $_GET['from'] . "\r\n");


How do you know the variable is being passed to the go.php file?
__________________
Link List Land - Linklist Creation, Design and Implementation.
matt is offline   Reply With Quote