Lets say you have a array declared like this
<?php
$Array=array("D rum & Bass","Jungle", "House","Techno ","Hip Hop");
?>
but what i want do do is somehow using a for loop to remove items in the
array. The items i want to remove are 0,2,4 or just 2,5. Deleting a item
in the array has to be flexible at which item to delete.
I appreciate anybody helps me on this thanks very much :)
Comment