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
https://forums.phpfreaks.com/topic/168994-passing-variables-in-php/
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()

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.