View Single Post
  #2 (permalink)  
Old 03-03-2008, 01:48 AM
Willemina Willemina is offline
Member
 
Join Date: Jan 2008
Posts: 37
Default

Your session data doesnt exist untill after the form is done.

Move the following code to the top of your page, just below session_start().
PHP Code:
<?php
    
foreach ($_POST as $key=>$value)
    {
$_SESSION[$key] = $value;}
?>
__________________
gribbit
Reply With Quote