Muchas gracias por contestar. He implementado el código y me ha quedado así:
login:
Código HTML:
<?php
include('config.php');
// Para saber si no ha iniciado sesión:
if(isset($_SESSION["logeado"]) && $_SESSION["logeado"] == 'SI') {
header ("Location: /");
}
?>
<form name="form1" method="post" action="entrar.php"><br>
<span style="color:#000; font-size:12px;">Email</span><br>
<input name="email" type="email" id="email"><br><br>
<span style="color:#000; font-size:12px;">Contraseña</span><br>
<input name="password" type="password" id="password"><br><br>
<input type="checkbox" name="recordar" id="recordar" value="1">
<span style="color:#000; font-size:12px;">Recordar</span><br />
<br>
<span style="font-size: 12px; color: #000"><a href="recuperar.php">Recuperar contraseña</a> | <a href="registrarse.php">Registrarse</a><br />
</span><br />
<input type="submit" name="Submit" value="Entrar">
<br />
</form>
Y el Header me quedó así:
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//ES" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<?php
include('/login/config.php');
// Para saber si no ha iniciado sesión:
if( !isset($_SESSION["logeado"]) || $_SESSION["logeado"] != 'SI') {
header ("Location: /login/");
exit;
}
?>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es" lang="es">
<head>
<title>Five</title>
<link href="/style.css" type="text/css" rel="stylesheet">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<meta name="viewport" content="width=1150px" />
<script src='models/funcs.js' type='text/javascript'></script>
</head>
<body>
<div class="supbar">
<img src="images/logo.png" width="100px" height="20px" style="margin: 10px 0 0 10px"></img>
</div>
Y me sigue ocurriendo exactamente lo mismo.
Qué puede ser?
Gracias!