![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
27/03/2004, 15:30
|
| | Fecha de Ingreso: noviembre-2003
Mensajes: 61
Antigüedad: 21 años, 2 meses Puntos: 0 | |
Un ultimo detalle Muchas gracias Luis, tengo ahora esto utilizando los cambios que me distes:
Notice: A session had already been started - ignoring session_start() in
C:\xxxx\access.php on line 2
el access.php es este:
<?php
session_start();
ob_start(); // eliminas el WARNING
if (isset($_SESSION['check'])) // eliminas el NOTICE
{
if($_SESSION['check'] != "s")
{
header("Location:index.php");
exit();
}
}
?>
y lo tengo agregado de primero y sin espacios en las paginas. |