From: "Don" <[EMAIL PROTECTED]>

OK!  I got it to work. Although session_id() would not work, using the SID
constant did.  Below is the code I used:

Compare the URL created with this:

<A HREF="test.php?<?php echo SID?>">Increment Your Counter!</A>

to the URL created with this:

echo '<p><a href="test.php?sid="' . $sid . '>Increment Your
Counter!</a></p>';

and you'll see the reason why the second didn't work.

---John Holmes...

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to