Re: [PHP] session register()

2006-03-11 Thread Satyam
- Original Message - From: suresh kumar [EMAIL PROTECTED] To: php php-general@lists.php.net Sent: Saturday, March 11, 2006 4:51 PM Subject: [PHP] session register() i am facing two problems in my project. 1) whether i can store variable as session variable inside javascript

RE: [PHP] Re: PHP Session register variable not always restored with contents

2002-10-26 Thread Victor Soroka
On Thu, 24 Oct 2002 21:26:30 +, John W. Holmes wrote: What is supposed to be in the session? Maybe these users are just denying cookies? Maybe... But my php compiled with --use-trans-sid and use this feature. In the session i store account, access timestamp etc... P.S. And 10% of traffic

[PHP] Re: PHP Session register variable not always restored with contents

2002-10-24 Thread Victor Soroka
I have same troubles!!! I use php internet trade traffic system, and 10-20% of visitors lose their sessions data. Cut from logs: Remote address: ## Referer: http://mydomain.com/ URI: /out.php?id=1PHPSESSID=235a91cef853e750a6b67a70375e7d88 User-agent: Mozilla/4.0 (compatible; MSIE 5.5;

RE: [PHP] Re: PHP Session register variable not always restored with contents

2002-10-24 Thread John W. Holmes
What is supposed to be in the session? Maybe these users are just denying cookies? ---John Holmes... -Original Message- From: Victor Soroka [mailto:vs240;yahoo.com] Sent: Thursday, October 24, 2002 10:08 AM To: [EMAIL PROTECTED] Subject: [PHP] Re: PHP Session register variable

Re: [PHP] session register!!

2002-02-08 Thread Nick Wilson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * and then Cristian Cerda declared Hi there, hope you can help me with my problem. I'm trying to set up a PHP/MySQL web site using session variables to pass information between pages. So far no good. I did set register_globals to On on

Re: [PHP] session register!!

2002-02-08 Thread Cristian Cerda
yes i did. Nick Wilson wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * and then Cristian Cerda declared Hi there, hope you can help me with my problem. I'm trying to set up a PHP/MySQL web site using session variables to pass information between pages. So far no good.

Re: [PHP] session register!!

2002-02-08 Thread Erik Price
On Friday, February 8, 2002, at 02:15 PM, Cristian Cerda wrote: I did set register_globals to On on the php.ini file. But when i use for example session_register(the_var) in one page ( using session_start() at the beginning), i don't get anything on the next page if i do echo $the_var . I

Re: [PHP] session register!!

2002-02-08 Thread Cristian Cerda
yes, and didn't work. Erik Price wrote: On Friday, February 8, 2002, at 02:15 PM, Cristian Cerda wrote: I did set register_globals to On on the php.ini file. But when i use for example session_register(the_var) in one page ( using session_start() at the beginning), i don't get anything

Re: [PHP] session register!!

2002-02-08 Thread Janet Valade
Did you use session_start() on the second page? In other words, the first page should have session_start(); session_register(the_var); $the_var=-here it is; link or whatever takes you to the second page. Then the second page needs session_start(); echo $the_var; Janet - Original Message