hi, thanks for all your help...but how come this doesnt work?:
<?php
if($logged_in == 0) {
$location = "login_success.php";
header("location: ".$location);
} ?>
I know for a fact on that that $logged_in does equal 0.
this if statement doesnt work either:
<?php
if($logged_in == 0) {
header("Location:login_success.php");
} ?>
What could possibly be wrong? Thanks a lot!
-INFLUX!