RE: [PHP-WIN] $_SESSION

2005-02-07 Thread Mikey
> Is there anyway to spoof the $_SESSION array? Well, depending on your server setup then possibly yes, but generally no. Mikey -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] $_SESSION

2005-02-07 Thread Dale Attree
Is there anyway to spoof the $_SESSION array?

Re: [PHP-WIN] $_SESSION

2003-01-13 Thread Bobo Wieland
TECTED]> Sent: Monday, January 13, 2003 3:04 PM Subject: RE: [PHP-WIN] $_SESSION > well it would seem that you aren't assigning anything to > $_SESSION['xhtmlStart'] - so does it work if you have this on page one? > > session_start(); > $_SESSION['xh

RE: [PHP-WIN] $_SESSION

2003-01-13 Thread Rich Gray
CTED] Subject: Re: [PHP-WIN] $_SESSION okej.. here it comes as short as I could get it... try the 'test' link to go to page2... page one: test"); ?> page 2: -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-WIN] $_SESSION

2003-01-13 Thread Bobo Wieland
CTED]> Sent: Monday, January 13, 2003 2:21 PM Subject: RE: [PHP-WIN] $_SESSION > Can you post some code that doesn't work > Rich > -Original Message- > From: Bobo Wieland [mailto:[EMAIL PROTECTED]] > Sent: 13 January 2003 12:14 > To: Rich Gray; [EMAIL PROTECTED]

RE: [PHP-WIN] $_SESSION

2003-01-13 Thread Rich Gray
Can you post some code that doesn't work Rich -Original Message- From: Bobo Wieland [mailto:[EMAIL PROTECTED]] Sent: 13 January 2003 12:14 To: Rich Gray; [EMAIL PROTECTED] Subject: Re: [PHP-WIN] $_SESSION First of all; I had written the wrong save_path in php.ini. Thanks for

Re: [PHP-WIN] $_SESSION

2003-01-13 Thread Bobo Wieland
l Message- > From: Bobo Wieland [mailto:[EMAIL PROTECTED]] > Sent: 13 January 2003 10:56 > To: [EMAIL PROTECTED] > Subject: [PHP-WIN] $_SESSION > > > Hi... Feels like I'm spaming this list with this many questions all at once. > But here is one more: > >

RE: [PHP-WIN] $_SESSION

2003-01-13 Thread Rich Gray
don't use session_register(). Try creating a couple of test pages as follows... page1.php page2.php HTH Rich -Original Message- From: Bobo Wieland [mailto:[EMAIL PROTECTED]] Sent: 13 January 2003 10:56 To: [EMAIL PROTECTED] Subject: [PHP-WIN] $_SESSION Hi... Feels like I'

Re: [PHP-WIN] $_SESSION

2003-01-13 Thread Rico Derks
Hi, Make sure you have a valid dir in your: session.save_path = c:/session This is located in php.ini -> [session] RICO. -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] $_SESSION

2003-01-13 Thread Bobo Wieland
Hi... Feels like I'm spaming this list with this many questions all at once. But here is one more: I'm having problems with displaying session variables now since I turned register_globals off... before I had this code for a session variable: session_register("test"); $test = "Hello world"; and