Re: Rp.: Re: Rp.: Re: [Phplib-users] Doc suggestions
Brought to you by:
nhruby,
richardarcher
From: Guillaume D. <gde...@pr...> - 2002-07-09 09:24:49
|
> extension, just like in ASP, JSP/Servlets and other. Any good > session handling object is written with cookie-less environment in > mind. Cookies OR url rewriting are the only available methods in HTTP > for the session propagation, Well... in a formular, you use an hidden input to propagate the SID... it's not strictly the same thing of an URL rewriting (if you use the method POST, I mean...). URL use the HTTP GET method... It's more clearly to write : <form action="toto.php" method="post"><input type="hidden" name="SID" value="fdsfsdfdsfdfsfdsfsdf"> than to write <form action="toto.php?SID=dsfdsfsdfdsfdssf" method="post"> ... doing this works... but it's not a good way to program IMHO... mixing GET and POST variables in the same request... hurk... ;-) |