Hi all.
I have some PHP scripting that authenticates users. In IE it is fine.
In Netscape 6 it is fine... but in Netscape 4.7 ... NO GO!
So far this is the only way I have found to successfully set a cookie in Netscape 4.7:
<?
$cook_value = "Sugar";
if($task == "")
{
setcookie ("TestCookie",$cook_value,time()+604800);
$task = "redirect";
}
if($task == "redirect")
{
header("Location: getcookie.php?task=nothing");
exit();
}
echo "$TestCookie - Cookie";
?>
My Problem is... how can I get the PHP Session Control to successfully set the cookie? How can I use Sessions with Netscape 4.7 ? Any Help will be very appreciated...
Thanks.
B