> I can generate some random value to be used for the session_id, but I
> can't think of a good way to store it for use on the first page.

Why does it matter if they hit refresh and get a new session ID before
you've collected any information about that ID?...

About all you *COULD* do is have a "fake" first page that does:

<?php
    $session_id = md5(rand());
    header("Location: page2.php?session_id=$session_id");
?>

They can now reload the "second" (first they'll see) page as much as they
want.

--
WARNING [EMAIL PROTECTED] address is an endangered species -- Use
[EMAIL PROTECTED]
Wanna help me out?  Like Music?  Buy a CD: http://l-i-e.com/artists.htm
Volunteer a little time: http://chatmusic.com/volunteer.htm



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to