[PHP] Sessions don't load

2002-01-09 Thread Ryan Kelley
I have got a page that i am loading sessions on with the following code: session_start(); $HTTP_SESSION_VARS['sess_id']=$PHPSESSID; Except that it will not assign an actual value until i hit refresh on my browser. Any ideas for a fix? Thanks in advance, Ryan Kelley -- PHP General Mailing

[PHP] Delete on exit

2002-01-09 Thread Ryan Kelley
their cart. Any ideas? Thanks, Ryan Kelley -- 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]

Re: [PHP] Delete on exit

2002-01-09 Thread Ryan Kelley
Exactly how would i do that. I am new to cookies. Please advise. Ryan Kelley Mehmet Kamil Erisen [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hi, You can store all shopping cart activites in a cookie until it is written to your database. When th

Re: [PHP] Sessions

2002-01-08 Thread Ryan Kelley
I actually fixed the problem with the following code: session_start(); $HTTP_SESSION_VARS['sess_id']=$PHPSESSID; Except that it will not assign an actual value until i hit refress on my browser. Any ideas for a fix? Thanks, Ryan Kelley Kirk Johnson [EMAIL PROTECTED] wrote in message

[PHP] Sessions

2002-01-07 Thread Ryan Kelley
I am having problems getting the sessions to work. when i input the following code: session_start(); session_register(sess_id); i get nothing registered. I have checked the sess_***etc... files in /tmp and they say: !sess_id| Does anybody have any ideas why this is? Thanks in advance Ryan