Ver Mensaje Individual
  #9 (permalink)  
Antiguo 06/08/2012, 12:09
webankenovi
Invitado
 
Mensajes: n/a
Puntos:
Respuesta: como mantener activa la session en php

prueba asi

Código PHP:
Ver original
  1. <?
  2.  
  3. //VALIDACION
  4. if ($_POST["usuario"]=="admo" && $_POST["clave"]=="hello"){
  5. //VALIDACION CORRECTA
  6.  
  7. if (!isset($_SESSION["autentificado"])) {
  8.  
  9. $_SESSION["autentificado"]= "SI";
  10.  
  11. }
  12.  
  13. include '../../_lecorps/es/admo_profiles_sites.php';
  14.  
  15. }else {
  16.  
  17. //VALIDACION ERRONEA, ENVIO A LOGIN3.PHP
  18. echo "<h1>ERROR !</h1>
  19. <a href='index.php?changePage=admin'>login</a>";
  20.  
  21. }
  22.  
  23. ?>