[PHP] sessions nightmare

2002-09-11 Thread Chris
Greetings, I am a new user to php and sessions and for the life of me I cannot figure this out I want to be able to have a user login (which is completed), they goto a search page (completed), and search for a particular item (completed). A page will display all the links for the ite

Re: [PHP] sessions nightmare

2002-09-11 Thread John Wards
s John Wards SportNetwork.net - Original Message - From: "Chris" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, September 11, 2002 9:47 AM Subject: [PHP] sessions nightmare > Greetings, > > I am a new user to php and sessions and for the life of me I

[PHP] Sessions nightmare continue...

2004-08-17 Thread Angelo Zanetti
Hi all, Still no luck with sessions. I have installed an older version: 4.3.1 and have register_globals=Off I have 2 test pages a1.php and a2.php All I want to do is register a session variable, set a value for it and then in a2.php check that it is still registered and view the session's value

Re: [PHP] Sessions nightmare continue...

2004-08-17 Thread Jason Wong
On Tuesday 17 August 2004 17:46, Angelo Zanetti wrote: > Still no luck with sessions. I have installed an older version: 4.3.1 > and have register_globals=Off > > I have 2 test pages a1.php and a2.php > > All I want to do is register a session variable, set a value for it and > then in a2.php chec

Re: [PHP] Sessions nightmare continue...

2004-08-17 Thread Chris Shiflett
Hi Angelo, --- Angelo Zanetti <[EMAIL PROTECTED]> wrote: > Still no luck with sessions. [snip] > a1.php: > > session_start(); > header("Cache-control: private"); // IE 6 Fix. > > if(isset($_POST['Submit'])) > { > $_SESSION["login"]="inside"; > session_write_close();