I'm getting a little frustrated w/ PHP. I have the following sequence:
page 1 gets input from user, calls script 1
script 1 sets session variables from page 1 POST with:
$_SESSION['email'] = $_POST['EMAIL']
$_SESSION['link'] = [mysql link]
script 1 calls page 2
page 2 takes in more data and calls script 2
script 2 gets session variables set in script 1 but errors out with:
Notice: Undefined variable: _SESSION in p1info.php on line 30
HELP:? This seemed so simple from the manuals but now it's just now working
and it doesn't make any sense. Your help is, as always, greatly
appreciated.
page 1 gets input from user, calls script 1
script 1 sets session variables from page 1 POST with:
$_SESSION['email'] = $_POST['EMAIL']
$_SESSION['link'] = [mysql link]
script 1 calls page 2
page 2 takes in more data and calls script 2
script 2 gets session variables set in script 1 but errors out with:
Notice: Undefined variable: _SESSION in p1info.php on line 30
HELP:? This seemed so simple from the manuals but now it's just now working
and it doesn't make any sense. Your help is, as always, greatly
appreciated.
Comment