Ver Mensaje Individual
  #13 (permalink)  
Antiguo 22/04/2010, 18:57
carlosmarin
 
Fecha de Ingreso: marzo-2010
Mensajes: 51
Antigüedad: 14 años, 2 meses
Puntos: 0
Respuesta: Ayuda con sesiones

Código PHP:
    session_start();
    if ( ! empty(
$_SESSION['nombreSesion']))
    {
    
// OK
    
}
    else
    {
        
header('Location: www.pagina.com');
    } 
y pues luego lo de siempre
Código HTML:
<<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>....