pluto Posted August 5, 2009 Share Posted August 5, 2009 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 More sharing options...
mikesta707 Posted August 5, 2009 Share Posted August 5, 2009 so i'm assuming your having trouble with is passing the two fields from the database to the other php file. if all that file does is get whatever fields, than just include that file in the other file that evaluates stuff. hope that helps Link to comment https://forums.phpfreaks.com/topic/168994-passing-variables-in-php/#findComment-891629 Share on other sites More sharing options...
bundyxc Posted August 5, 2009 Share Posted August 5, 2009 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 https://forums.phpfreaks.com/topic/168994-passing-variables-in-php/#findComment-891631 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.