hi
i have a 2D array, is there any function to delete particular row?
You can use the unset() function for this:
unset($array['key']);
thank, so it will reset the index as well?
.
array_splice($array,$num,1);
hope that helps.
Originally posted by eriksmoen . array_splice($array,$num,1); hope that helps.
thx this work nice and easy