Jump to content

PHP Varibles Help


hewstone999

Recommended Posts

I have a problem is passing the values accoss in the SQL in the PHP code below. The $z varible will get a value from the session, the $z value will then be used in the SQL. However the value dose get passed across to the SQL code.

 

 

<?

$db_conn = new COM("ADODB.Connection");

$connstr = "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=". realpath("./Database1.mdb").";";

$db_conn->open($connstr);

$z = $_SESSION['user'];

$MySql = "SELECT * FROM users_details WHERE user_id = (SELECT users_id FROM users_login WHERE Username = '$z')";

$rs = $db_conn->Execute($MySql);

 

while(!$rs->EOF){

$user_id = $rs->Fields("user_id")->value;

$surname = $rs->Fields("surname")->value;

$forname = $rs->Fields("forname")->value;

$DOB = $rs->Fields("DOB")->value;

$gender = $rs->Fields("gender")->value;

$email= $rs->Fields("email")->value;

 

$rs->MoveNext();

 

?>

 

Any ideas how i can passed the value across, or is there another meathod of doing this?

 

Thanks in advance for your help.

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.