Ver Mensaje Individual
  #2 (permalink)  
Antiguo 08/05/2007, 11:11
Avatar de ferbux
ferbux
 
Fecha de Ingreso: mayo-2007
Ubicación: por ahí intentado ayudar
Mensajes: 823
Antigüedad: 17 años
Puntos: 6
Busqueda Re: Consulta sobre sesion

Pues mira prueba hacerlo de esta manera, ojala te sirva esto:

<?
session_start();
header("Cache-control: private");
if(!$_SESSION['status']) { // Verificar si se ha inicializado la sesion.
header("Location: /carpetadondealmacenastodo/index.php"); // Si no esta inicializada la sesion, mandamos al usuario a index.php.
echo "<html></html>";
exit;
}