Re: [PHP] About sessions !!

2001-04-24 Thread Yasuo Ohgaki
SID does not work unless you enable trans sid. Regards, -- Yasuo Ohgaki Hassan Arteaga [EMAIL PROTECTED] wrote in message 7F548E90E63BD1118E4600609707771F8BEFAF@goliath">news:7F548E90E63BD1118E4600609707771F8BEFAF@goliath... Hi !! I just begin with PHP( but is the same as ASP ) and testing

RE: [PHP] About sessions !!

2001-04-24 Thread Nicolas Guilhot
: Yasuo Ohgaki [mailto:[EMAIL PROTECTED]] Envoyé : mardi 24 avril 2001 16:11 À : [EMAIL PROTECTED] Objet : Re: [PHP] About sessions !! SID does not work unless you enable trans sid. Regards, -- Yasuo Ohgaki Hassan Arteaga [EMAIL PROTECTED] wrote in message 7F548E90E63BD1118E4600609707771F8BEFAF

RE: [PHP] About sessions !!

2001-04-24 Thread Hassan Arteaga
] Subject: RE: [PHP] About sessions !! You should also check if register_globals is set to ON in your php.ini file. Otherwise you can't access you session variable just with $myvar !! And in your code you never increment $myvar, so even if it works, you'll always get 1. Regards, Nicolas Guilhot

RE: [PHP] About sessions !! (fwd)

2001-04-24 Thread johndmiller
] Subject: RE: [PHP] About sessions !! ok ..register_globals are on !! Ok $myvar always will be 1 ..but when a try to print it is empty !!!..It is just a test about session. Thanks Nicolas !! -Original Message- From: Nicolas Guilhot [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 24, 2001 11

Re: [PHP] About sessions !!

2001-04-24 Thread Meir kriheli
On Tuesday 24 April 2001 17:00, Hassan Arteaga wrote: Hi !! I just begin with PHP( but is the same as ASP ) and testing some examples... loock at the code: Page 1- Session.php ?php session_start(); $myvar = 1; session_register(myvar); ? html head meta http-equiv=Content-Type