Jump to content

Query wont work...


SirChick

Recommended Posts

I have a query which is finding the user's row as its not producing any errors yet when i echo the variable it comes out as "0" when in the database the data is "1". I've no idea where its getting "0" from, what did i do wrong?

 

$GetUserID = mysql_query("SELECT * FROM userregistration
                    WHERE UserID='{$_SESSION['Current_User']}'");

                  
// Fetch the row from the database
if (!($row = mysql_fetch_assoc($GetUserID))) {
    echo "User not found!";
    exit;
echo mysql_error();
}


$JailID = $row['JailID'];
Echo $JailID;


If ($JailID == 1 ){
header("Location: Jail1.php");
}

Link to comment
Share on other sites

hey there,

2 suggestions for ya,

 

1. take the query you are sending and query the db directly, using a gui tool or phpmyadmin or command line. see what happens.

2. var dump the $JailID to see what type it is. maybe its coming in as bool?

 

i did a quick test off your data and was able to get something back from my db.

ref: http://us.php.net/mysql_fetch_assoc

 

good luck.

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.