All,
I'm using php 4.06 on redhat. I installed from the rpm's from redhat. anyway, i've enabled cookies support in my php.ini by setting session.use_cookies to 1
Given the following php, should I not be able to print foo out on from test2.php
---test.php--
<?php
session_start();
session_register("foo");
?>
<html>
<a href="http://www.a2znews.com/listopt/test2.php?foo=<?=$foo?>&<? print SID; ?>">test</a>
</html>
--test2.php--
<?php
session_start();
print "hello " . $foo;
exit;
?>
It's my understanding that if the browser has cookies disabled, then it should still work?
Thanks,
Jay