The Little Guy Posted September 16, 2007 Share Posted September 16, 2007 I'm not sure if it is just me, but I can't seem to figure this out. I have an array <?php echo'<input type="checkbox" name="itemID[]" value="'.$itmNum.'" />'; ?> There will be more than one of these, and when I check the box I will be able to press "Remove Selected" and it should remove that Item from 3 different arrays. basically what I would like to know, is how can I remove an Item from an array if I know its current position? Link to comment https://forums.phpfreaks.com/topic/69545-solved-remove-from-array/ Share on other sites More sharing options...
rarebit Posted September 16, 2007 Share Posted September 16, 2007 Do you mean like this: $a = array('a','b','c'); unset($a[1]); foreach($a as $e) echo $e."<br>"; Link to comment https://forums.phpfreaks.com/topic/69545-solved-remove-from-array/#findComment-349469 Share on other sites More sharing options...
The Little Guy Posted September 16, 2007 Author Share Posted September 16, 2007 Yeah I was doing that, and I finally figured out a better way than what I was doing I was using $itmNum as the id number of the product, what I wanted to do was use the key value of the product instead... so I did that, and now it works, thanks. Then I used your method, and it worked, thanks. Link to comment https://forums.phpfreaks.com/topic/69545-solved-remove-from-array/#findComment-349472 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.