Re: [PHP] env var

2001-08-01 Thread Richard Lynch
> is there a reson i get soem of these twice is it the fault of the > people sending them? the list? or my mail program??? Also, the news server articles got re-numbered during the move, so some news clients may be quite confused. -- PHP General Mailing List (http://www.php.net/) To un

RE: [PHP] env var

2001-08-01 Thread scott [gts]
a lot of people send the reply to the list and Cc: a copy to the sender so you end up getting two copies. > -Original Message- > From: Jon Yaggie [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, August 01, 2001 12:41 PM > To: [EMAIL PROTECTED] > Subject: Re: [PHP] env var

Re: [PHP] env var

2001-08-01 Thread Jon Yaggie
Message - From: "Philip Olson" <[EMAIL PROTECTED]> To: "Jon Yaggie" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Wednesday, August 01, 2001 11:36 PM Subject: Re: [PHP] env var > See : > > http://www.php.net/manual/en/ref.session.php > > N

Re: [PHP] env var

2001-08-01 Thread Philip Olson
See : http://www.php.net/manual/en/ref.session.php Note the use of $HTTP_SESSION_VARS within the examples, this may be what you're referring to. Regards, Philip On Wed, 1 Aug 2001, Jon Yaggie wrote: > is there not an array that saves all session variables? I just got > done looking for it

RE: [PHP] env var

2001-08-01 Thread Dave
snicker, you don't know how tempting it was to RTM check array function "each" which has a nice explanation on how to use the each function with features $HTTP_PORT_VARS array... thats what you are looking for while (list ($key, $val) = each ($HTTP_POST_VARS)) { echo "$key => $val"; } Dave