Page 2 of 2

Posted: Mon Aug 20, 2007 11:39 pm
by RobertGonzalez
Do this:

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;
?>
And post back what is on the screen.

Posted: Mon Aug 20, 2007 11:39 pm
by 4Boredom
thank you everah the error was in that script ... it was reclyced and called for user2 in some functions

Code: Select all

// Get other required user infomation 
$user_first_name = $info['first_name']; 
$user_last_name = $info['last_name']; 
$user_age = $info['age'];
$user_location = $info['location'];
$user_party = $info['party'];
$user_gender = $info['gender'];

Posted: Mon Aug 20, 2007 11:41 pm
by RobertGonzalez
So are you fixed now?