Re: [PHP-WIN] Session Variables

2005-03-08 Thread Richard Duval
uot; <[EMAIL PROTECTED]> To: "'Richard Duval'" <[EMAIL PROTECTED]>; Sent: Monday, March 07, 2005 7:29 PM Subject: RE: [PHP-WIN] Session Variables > You need to make sure that in your second page that you're starting the > session - if you don't do this t

Re: [PHP-WIN] Session Variables

2005-03-07 Thread Armando
y, March 07, 2005 7:05 PM To: php-windows@lists.php.net Subject: [PHP-WIN] Session Variables Newbie question, sorry but I've searched everywhere and can't seem to find the answer... Session variables...should be able to define in one page, call the next page and have it available the

Re: [PHP-WIN] Session Variables

2005-03-07 Thread graeme
hard Duval [mailto:[EMAIL PROTECTED] Sent: Monday, March 07, 2005 7:05 PM To: php-windows@lists.php.net Subject: [PHP-WIN] Session Variables Newbie question, sorry but I've searched everywhere and can't seem to find the answer... Session variables...should be able to define in one page, ca

RE: [PHP-WIN] Session Variables

2005-03-07 Thread Mike
ch 07, 2005 7:05 PM > To: php-windows@lists.php.net > Subject: [PHP-WIN] Session Variables > > Newbie question, sorry but I've searched everywhere and can't > seem to find the answer... > > Session variables...should be able to define in one page, > call th

[PHP-WIN] Session Variables

2005-03-07 Thread Richard Duval
Newbie question, sorry but I've searched everywhere and can't seem to find the answer... Session variables...should be able to define in one page, call the next page and have it available there as well right? I can print out the session varialble in the page it was created, no problem Then I c

RE: [PHP-WIN] Session Variables Problem (Missing)

2004-01-10 Thread John Ellingsworth
} if (isset($_SESSION["idAsset"])) { $idAsset = $_SESSION["idAsset"]; } Thanks, John Ellingsworth http://mail.med.upenn.edu/~jellings/ AIM: vc2000support -Original Message- From: Jennifer S. [mailto:[EMAIL PROTECTED] Sent: Saturday, January 10, 2004 5:36 AM To:

Re: [PHP-WIN] Session Variables Problem (Missing)

2004-01-10 Thread Jennifer S.
Hi, Seems to work OK. I consistently got the same session ID I am in a similar situation, moving all my ASP apps to PHP. I run Apache 2.0 on Win 2000 servers. I have actually traced the sessions in the PHP session data directory and found things to be working consistently and well. Are you using

[PHP-WIN] Session Variables Problem (Missing)

2004-01-09 Thread Brad Lawryk
I am new to PHP moving over from ASP and one of things I relied on heavily was session variables. It seems that everytime a new page is opened it starts a new session. I have set up a simple test site you can see whats happening - easier than to explain. http://www.cflsquad.com/index.php Use Use

[PHP-WIN] Session variables lost

2003-06-18 Thread Reuven Nisser
Hello, I am using session variables using the format of $_SESSION["XXX"]. Sometimes, some of the session variables are lost when trying to access a different page. The list is consistent. At the end of the current page, I display the session variable value and it's working but on the start of the n

Re: [PHP-WIN] Session Variables

2002-12-04 Thread Zaid Al-Hamdoon
in the php.ini make sure the global register=on. PHP 4+ this is set to off by default. From: "Jed R. Brubaker" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: [PHP-WIN] Session Variables Date: Wed, 4 Dec 2002 00:15:19 -0700 I am having a problem with a simple script t

[PHP-WIN] Session Variables

2002-12-03 Thread Jed R. Brubaker
I am having a problem with a simple script that uses session variables. It is a user authentication script and none of my users have had any problems with the exception of one individual. The session variables simply don't carry over. I am half convinced that it is user error, but have any of you r

[PHP-WIN] session variables

2002-04-04 Thread Lee, Ford
I seem to have configuration problemsi just can't seem to get session variables written to in files under win2000, NTFS w/ Apache 1.3.23 and PHP 4.1.2 ..i've already done everything from session_start() on every page to making var globalanybody can help?? thanksbtw, i got the same

[PHP-WIN] Session Variables...between pages.

2001-11-16 Thread Ryan Marrs
Here's the problem. I've got an upload script, attached to a message forum. When the user goes to post a message, they have a link to upload files. When they click the link, it opens a new window with the upload form, and that form handles all the uploading. I then need to pass the filename it u

[PHP-WIN] Session variables

2001-05-17 Thread Bob Sears
For the following code blocks: #-- top.php first program entered session_start(); session_register ('trackingnumber'); if (IsSet($trackingnumber)){ print ("Issued session destroy because trackingnumber = $trackingnumber"); session_destroy(); print ("trackingnum

Re: [PHP-WIN] Session Variables With Spaces

2001-04-12 Thread Eric Pankoke
My mistake. I should have looked into this a little bit more before I posted a message about it. It turns out that my HTML was the problem, not the PHP session variables. When I was writing out the text controls I was writing the tag as value=variable instead of value="variable", which was

[PHP-WIN] Session Variables With Spaces

2001-04-12 Thread Eric Pankoke
I have two php pages using session variables. One redirects to itself after refreshing the variables, and the other redirects to a second php page, retrieves some values into the session variables, and then returns to the first page. The one that redirects to itself works fine. The one that