Ver Mensaje Individual
  #1 (permalink)  
Antiguo 14/08/2003, 15:53
rcl2121
 
Fecha de Ingreso: abril-2002
Mensajes: 36
Antigüedad: 22 años
Puntos: 0
Borrar valor de array

tengo
itemsEnCesta[123]= 1
itemsEnCesta[345]= 1
itemsEnCesta[567]= 1
itemsEnCesta[789]= 3


Como borro itemsEnCesta[345] ?

se me ocurrio algo asi

foreach($itemsEnCesta as $k => $v){
if ($k= 345)$k=NULL;
}

pero no funciona