Jump to content

Retaining variables accross pages


yrrahxob

Recommended Posts

I am building my own web site and on the main page, there is an option to login to a users' account if they so desire.  This is not a requirement.  After they login, they can browse through products and and then to the shopping cart.  When they are ready to checkout, they are presented with a form asking for name and address and other information.  What I want to do is when the form is presented and they are logged in, the form will be populated with the information retrieved when they logged in.

below is the validation/login script I am working on.  I want to keep the values of the array $user_info during the entire session and I have register_globals disabled.  Someone please help.

<?php

function validate_user($user_email, $user_password){

$row=array();

$q = db_query("SELECT ss_first_name, ss_last_name, ss_email, ss_phone, ss_address_1, ss_address_2, ss_city, ss_state, ss_zip_1, ss_zip_2 FROM ".USER_TABLE." WHERE ss_email='$user_email' AND ss_password='$user_password'") or die (db_error());
$row = db_fetch_row($q);
return $row;

}

if(isset($_POST["login_submitted"])){
$user_info=validate_user($_POST["user_email"], $_POST["user_password"]);
}

?>
Link to comment
Share on other sites

In order to ratin variables across pages you could use sessions.

Put [code]session_start()[/code] before anything is output (eg on the top of the page) and define the variables like $_SESSION['something']. You would then be able to call it on another page (which has ran session_start() too) as $_SESSION['something'].
Link to comment
Share on other sites

[quote author=redarrow link=topic=108394.msg436046#msg436046 date=1158505296]
[code]
<?php session_start();

$name="redarrow";

$name=$_SESSION['name']=$name;

echo"<a href='test_result.php'>please see my name</a>";

?>
[/code]
[/quote]

Why on earth would do [code=php:0]$name=$_SESSION['name']=$name[/code] for? I see no logic in that.
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.