07.01.2013, 15:08
Does anyone know?!
EDIT:
This is what's causing it.
EDIT:
This is what's causing it.
PHP код:
session_start();
$user = $_SESSION["user_login"];
if (!isset($_SESSION["user_login"])) {
header("location: index.php");
exit();
}
else
{
header("location: home.php");
}