Posted: Mon Aug 20, 2007 11:39 pm
Do this:
And post back what is on the screen.
Code: Select all
<?php
$info2 = mysql_query("SELECT * FROM `userbase` WHERE email_address = '{$email_address}' ");
if(!$info2){
die("Could not get user info");
}
$info2 = mysql_fetch_array($info2);
echo '<pre>' . print_r($info2, true) . '</pre>';
exit;
?>