// Arranca la sesión
session_start();
-//TODO - verificar si existe el id y reconstruirlo
function pagina_cabecera($titulo = '')
{
+ header('Content-type: text/html; charset=ISO-8859-1');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
printf('<p style="color: green">%s</p>', $msg);
}
+function pagina_check_login($redirect = true)
+{
+ if (!@$_SESSION['user'])
+ {
+ // Avisamos a donde hay que volver
+ if ($redirect) $_SESSION['login_redirect'] = basename($_SERVER['PHP_SELF']);
+ include 'admin.login.php'; // Mostramos el login
+ exit;
+ }
+}
+
?>
\ No newline at end of file