Jump to content

Passing variables in PHP


pluto

Recommended Posts

Hi guys,

 

I have a PHP file that gets two fields out of a data base.  Then what I'd like to do is use that field in another PHP file to carry out some evaluation on it based on a user's input from a HTML form. 

 

I don't have the first clue how to do it.  Any suggestions?

 

I know this is not much information, but I've not started coding it as of yet, I've looked around and not found much on Google, however I'm going to keep trying.

 

Thanks in advance

 

Pluto

Link to comment
Share on other sites

I think that sessions would help you.

 

session_start()
$_SESSION['fname'] = $fetch['fname'];
$_SESSION['lname'] = $fetch['lname']

 

Using this, no matter what page the user is on, you can call the variables $_SESSION['fname'] and $_SESSION['lname']. The variables become impossible to use once the user closes out of the browser, or you manually either unset the variables, or destroy the session:

 

session_destroy()

 

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.