
22/11/2005, 07:41
|
(Desactivado) | | Fecha de Ingreso: noviembre-2005
Mensajes: 13
Antigüedad: 19 años, 3 meses Puntos: 0 | |
Prueba con
.
.
.
$k=count($mat_movil);
for($zx=0;$zx<$k;$zx++)
{
$xa="elim$zx";
if(isset($xa))
{
$mat1=array_slice($mat_movil,0,$zx);
$mat2=array_slice($mat_movil,$zx+1,$k);
$mat_movil=array();
$mat_movil=array_merge($mat1,$mat2);
}
}
.
.
. |