sessions

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

 



I have an old site which uses this code on login:

//it does a query then
 if ($affected_rows>0){
	 session_start(mysite);
          session_register('admin');
          $wardadmin = yes;
	      header("location: admin.php");
}

and in the top of admin.php:

  session_start(mysite);
  if (@$admin != "yes")
   {
    header("location: login.php");
    exit;
  }

The host recently upgraded to php 4.4 and now the login doesn't work. 
I do notice when I login that the page goes to admin the right back to
login.  Why doesn't admin see the session var?

Thanks!

-- 
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