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
Only use $_SESSION if you're running PHP 4.1.0 or higher as in previous
versions it's not available as a global variable. Check this link on PHP
for more info on session:
http://ca3.php.net/manual/en/ref.session.php
Cheers.
Armando
graeme wrote:
Also use $_SESSION rather than HTTP_SESSION_VAR.
M
Also use $_SESSION rather than HTTP_SESSION_VAR.
Mike wrote:
You need to make sure that in your second page that you're starting the
session - if you don't do this then that second page will never have access
to those session variables.
-M
-Original Message-
From: Richard Duval [mailto
You need to make sure that in your second page that you're starting the
session - if you don't do this then that second page will never have access
to those session variables.
-M
> -Original Message-
> From: Richard Duval [mailto:[EMAIL PROTECTED]
> Sent: Monday, March 07, 2005 7:05 PM
}
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:
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
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 that uses session var
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