Thread
:
Issues with PHP sessions
View Single Post
#
2
(
permalink
)
03-03-2008, 01:48 AM
Willemina
Member
Join Date: Jan 2008
Posts: 37
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
Willemina
View Public Profile
Send a private message to Willemina
Find all posts by Willemina