Alright, sessions are the only thing that totally take a toll on me. Now im not sure if my server isnt configured properly or im just retarded and coding it wrong, but a standard session code like this should work fine correct?
PAGE 1: ---------------------------------------------------------------
<?
session start();
$the_variable = "yea this is a variable";
session_register('the_variable');
echo("$the_variable");
?>
<a href=page2.php>The Link</a>
PAGE 2: ---------------------------------------------------------------
<?
echo($the variable);
?>
The variable should show up correct? I get no erroes, but the error that says the variable isnt registered or its undefined..
Now im not sure whats wrong with this situation here, but it doesnt work.. Ive gotten it to work for perhaps 1 page, but once i switch from page 2 to page 3 it stops working again.
Idea? I can include my php.ini if you'd like. Im running on Win2k Adv. Server w/php4 & MySQL.