$test=array('a'=>1,'b'=>2,'c'=>3);
foreach ($test as $key=>$value)
{
if ($value==2) unset($test[$key]);
}
or
$test=array('a'=>1,'b'=>2,'c'=>3);
$i=0;
foreach ($test as $key=>$value)
{
if ($value==2) array_splice($test,$i,1);
$i++;
}
Op woensdag 21 augustus 2002 12:17, schr
Hi evey1,
sorry if I' ve already posted this :
in order to remove a whole array of values from a multidimensional array
I tried the following:
foreach($bkmks as $val) {
if($val[8]==$cod){
Hi evey1,
in order to remove a whole array of values from a multidimensional array
I tried the following:
foreach($bkmks as $val) {
if($val[8]==$cod){
array_splice($bkmks,$val,1);
3 matches
Mail list logo