Hi,
I tried that and it didn't make a difference. Maybe the problem is in the signup script. Please check and see if there is anything wrong with it. I took quotes off the quey an it give me an error.
<?
include("config.php");
$page = "signup.php?id=$id";
$id = $_GET['id'];
//(id,first_name,last_name,user,pass,email,upgrade,ref)
if (isset($submit))
{
mysql_query("INSERT INTO members (first_name,last_name,user,pass,email,upgrade,ref) Values ('$first','$last','$user','$pass','$email','$upgrade','$ref_user')");
// Retrieve new id for member
$new_member_id = mysql_query("SELECT * FROM members WHERE 'user' = '$user'");
$new_member_id = mysql_fetch_object($new_member_id);
$new_id = $new_member_id->id;
$sponsor_ads_id = mysql_query("INSERT INTO sponsor_ads (id) Values ('$new_id')");
$featured_ads_id = mysql_query("INSERT INTO featured_ads (id) Values ('$new_id')");
// End of query
print "<br><br><blockquote><blockquote><blockquote><p align=left><font face=arial size=2>Thanks for signing up! We have sent your login details to your email address $email!<br><a href=\"login.php\">Click here to login now!</a><br><br>Thanks,<br>Admin<br><a href=$domain>$domain</a></font></p></blockquote></blockquote></blockquote>";
// Send email code goes here
$title = "New $title Account";
$message = "Hi $first,\n\nThanks for signing up with $title $domain\nYour Username is: $user\nYour Password is: $pass\n\nThanks,\nAdmin\n$domain\n\n";
mail("$email", "$title", $message,
"From: webmaster@{$SERVER['SERVER_NAME']}\r\n" .
"Reply-To: webmaster@{$SERVER['SERVER_NAME']}\r\n" .
"X-Mailer: PHP/" . phpversion());
exit;
}
?>