im having a problem in my session , sometimes my session value is display and sometimes it wont
in my first page there is a form (method is post) that contain some fields
eg. firstname (text)
so when i go to next it store in session
like
<? session_start() ?>
<html>
<title></title>
<body>
<? $SESSION['user']=$POST['firstname']
echo $_SESSION['user'];
?>
Then the next page the session value wont display
<? session_start();?>
<title></title>
<body>
<? echo $_SESSION['user'];
?>