on 11/11/02 7:41 AM, Charles Wiltgen ([EMAIL PROTECTED]) wrote:

> Are there drawbacks to storing persistent object properties as a serialized
> value in hidden fields that I'm missing?  This is a newbie's first major web
> application, so I really appreciate your input.
 
Doesn't that mean you'd have to use forms for getting between each page?
There are only three ways to pass a session ID around:

1. via the URL (GET)
2. via cookies
3. via a form (POST)


If you categorically rule out 1 & 2, then you're left with 3.  3 means that
every link across your site has to be a form submit.  Yuk!!!


Or have I misunderstood your question?


Justin French
--------------------
Creative Director
http://Indent.com.au
--------------------


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

Reply via email to