The "Freeola Customer Forum" forum, which includes Retro Game Reviews, has been archived and is now read-only. You cannot post here or create a new thread or review on this forum.
$Mail = mysql_query("SELECT Email_Address FROM $Table WHERE Email_Address='$Email_Address'", $Connect);
but that doesn't seem to work, does anyone else know why this may not be working??
Could I ask Freeola what code you use to look-up things, such as a Users Screen name, etc...
Thanx to anyone for their input on this...
Also, don't forget that variables are case-sensitive.
If I were to do what you're doing, I'd do:
funtion conf_mail ($email) {
$qid = mysql_query ("
SELECT * FROM tablename WHERE Email_Address = '$email'
");
return $qid;
};
$mail = conf_mail ($Email_Address);
?>
See if that works.
$Connect =
mysql_connect("db.haignet.f2s.com", "username", "password");
$Mail = mysql_query("SELECT Email_Address FROM $Table WHERE Email_Address='$Email_Address'", $Connect);
but that doesn't seem to work, does anyone else know why this may not be working??
Could I ask Freeola what code you use to look-up things, such as a Users Screen name, etc...
Thanx to anyone for their input on this...