Search found 2 matches

by preston2003
Fri Apr 08, 2005 11:29 am
Forum: PHP - Code
Topic: session_start()
Replies: 3
Views: 556

session_start() example

So in the example below will be what?

if ((isset($_SESSION['admin_logged']) &&
$_SESSION['admin_logged'] != "") ||
(isset($_SESSION['admin_password']) &&
$_SESSION['admin_password'] != "")) {
by preston2003
Fri Apr 08, 2005 9:45 am
Forum: PHP - Code
Topic: session_start()
Replies: 3
Views: 556

session_start()

I built a authentication database with MySQL 5.0.3 and PHP 4.3.12 dev using Apache2 and when I get to login page and submit my user and pass the database sees my authentication, but then i am supposed to go to anoth session of the site. Instead the login session keeps looping back to login again. I ...