I have used PHP4 Session in my application but if the client's browser
 disables cookie, the application will not work.

 However, session is a server-side implementation and not related to
cookie.
 Does anybody know how to configure and implement with session in PHP4?

 the following is my configuration in php.ini, is it any wrong configure?

 [Session]
 ; Whether to use cookies.
 session.use_cookies = 0

 ; Name of the session (used as cookie name).
 session.name = PHPSESSID

 ; Initialize session on request startup.
 session.auto_start = 1

 ; use transient sid support if enabled by compiling
with --enable-trans-sid.
 session.use_trans_sid = 1



-- 
PHP Windows 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