Ver Mensaje Individual
  #3 (permalink)  
Antiguo 24/08/2007, 11:43
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Re: problema con unset

Prueba asi:
Código PHP:
unset($_SESSION['num_productos']);
unset(
$_SESSION['total_cesta']);

$_SESSION['num_productos'] = 0;
$_SESSION['total_cesta'] = 0.0
Asi reseteas el valor de la session.

Saludos.