Re: [PHP] PHP Login Sessions

2002-11-01 Thread @ Edwin
Hello, "Jay Fitzgerald" <[EMAIL PROTECTED]> wrote: [snip] > === > session_start(); > > if (isset("valid_id")) > { > echo "$_SESSION[valid_id]"; > } > else [/snip] Perhaps, it's because you need to ask if (isset($_SESSION['valid_id'])) ? - E -- PHP General Mailing

[PHP] PHP Login Sessions

2002-11-01 Thread Jay Fitzgerald
What am I doing wrong here? I have a login form that visitors enter their "use"name and "use_psswrd" in to log in...the form action is this code: == session_start(); if ($_REQUEST[use_name] && $_REQUEST[use_psswrd]) { $connection = mysql_connect("SERVER","USER","PASS") o