Ver Mensaje Individual
  #3 (permalink)  
Antiguo 13/12/2011, 12:01
rufus
 
Fecha de Ingreso: mayo-2009
Ubicación: Andalucia
Mensajes: 650
Antigüedad: 15 años
Puntos: 1
Respuesta: problema con logeo de contraseña y usuario

estara el problema en session.php

en la funcion

Código PHP:
    private function verificar_logueo()
    {
        if(isset(
$_SESSION["id"]))
        {
            
$this->id =  $_SESSION["id"];
            
$this->username $_SESSION["username"];
            
$this->logueado true;
        }
        else
        {
            unset(
$this->id);
            
$this->logueado false;
        }
    } 
nota: he cambiado las variables $_SESSION usuario a username