Re: Session won't pick up one variable

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



You can set it where you are attempting to, but you need to have the sesion_start(); at the top of the file

Bastien

Sent from my iPod

On Jan 30, 2009, at 17:20, Terion Miller <webdev.terion@xxxxxxxxx> wrote:

Think I'm setting this in the wrong place...someone help ...where do I set
the AdminID session

if (isset($_POST['UserName'])) {$UserName = $_POST['UserName'];} else
{$UserName = '';}
if (isset($_POST['Password'])) {$Password = $_POST['Password'];} else
{$Password = '';}

$msg = '';

if (!empty($UserName)) {

   $sql = "SELECT `AdminID`,`UserName` FROM `admin` WHERE
`UserName`='$UserName' and    `Password`='$Password'";
   $result = mysql_query ($sql);
   $row = mysql_fetch_object ($result);

   if (isset($_POST['AdminID'])) {$AdminID = $_POST['AdminID'];} else
{$AdminID= '';}

   If (mysql_num_rows($result) > 0) {
       $_SESSION['AdminLogin'] = true;
       $_SESSION['user']=$UserName;
       $_SESSION['AdminID']=$AdminID;

       header ('Location: Main.php');
       exit;
   } else {

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux