Ver Mensaje Individual
  #5 (permalink)  
Antiguo 23/03/2005, 13:16
killerchess
 
Fecha de Ingreso: noviembre-2003
Mensajes: 61
Antigüedad: 20 años, 5 meses
Puntos: 0
Ahora esta así

El session_path no hizo falta. Ya puedo entrar pero ahora me pasa lo que escribi arriba.

<?php
session_name('ccv');
session_start();
if (isset($_SESSION['check']))
{
if($_SESSION['check'] != "s")
{
header("Location:index.html");
exit();
}
}
else
{
header("Location:index.html");
exit();
}
?>