Estoy haciendo una web he creado una clase login si se valida bien guardo la clase en la session con los datos correctos, luego al recuperar los datos me tira un error, el error es este:
y la linea 33 es:
y la función getId es:
gracias por la ayuda
CitarFatal error: main() [<a href='function.main'>function.main</a>]: The script tried to execute a method or access a property of an incomplete object. Please ensure that the class definition "Login" of the object you are trying to operate on was loaded _before_ unserialize() gets called or provide a __autoload() function to load the class definition in C:\Documents and Settings\Administrador\Mis documentos\wwwroot\web\Index.php on line 33
y la linea 33 es:
Código (php) [Seleccionar]
if(isset($_SESSION['login'])){
$logins=$_SESSION['login'];
echo $logins->getId();(linea 33)
}
y la función getId es:
Código (php) [Seleccionar]
public function getId(){
return $this->id;
}
gracias por la ayuda