I'm using IE5.*
Xitami for a web server
I'm pretty sure I have php.ini done right, but when I run my scrip, I get a blank page instead of the cookie value.
<?php //test1.php
setcookie("mash", "bats", time()+1209600, "/davjuani/", "http://127.0.0.1", "0");
header("location: http://127.0.0.1/davjuani/test.php");
?>
<?php //test.php
global $mash;
echo ("$mash");
?>
I don't even get an error!
Does anyone have any ideas?
Thanks a ton!