Hello yall well my brain has taken a real hit here LOL
Ok heres the problem im trying to pass a simple variable from one page to another page via a session
//PAGE 1=
session_start();
session_register("message1");
$message1 = "Hello";
if (session_is_registered("message1")) {
print "session is registered";
}
//PAGE 2=
session_start();
$message2 = $HTTP_SESSION_VARS["message1"];
print "$message2 World";
session_unregister("message1");
//As you can see the code is simple and on the initial page its stating that the session is registered but then when I go to the next page its not writing the variable I have read that there are changes that must be made to the php.ini file for windowz XP users in a couple of areas to the php.ini file but I dont want to go messing around unless I know for sure. Any help would be great because the upcoming project im working on requires sessions and im in a jam untill I get this worked out. Thanks yall