Hi, I have the following code:
if (mysql_num_rows($check_res)){
foreach ($POST as $key=>$value) {
$SESSION[$key] = $value;
}
header("Location: pressrelease.php");
exit;
}
Now, when I try to access $_SESSION on pressrelease.php page nothing comes up.
Please help.
Thank you.