Php session help requested
February 13, 2005 4:27 PM
Subscribe
Php session help requested. [MI]
Using php 4, my session variables do not want to be passed from page to page. They register fine from a form and are usable on the form's action page but, otherwise, they are no place to be found.
Suggestions?
posted by Scottk to computers & internet (9 comments total)
$std_id = $_POST['std_id'];
$last = $_POST['last'];
$_SESSION['std_id'] = $std_id;
$_SESSION['last'] = $last;
I can call the set $_SESSION variables on that page only, and not any other pages.
posted by Scottk at 4:30 PM on February 13, 2005