I have been trying to figure this out for a few days already and can't seem to figure it out. I want to display a few images with a checkbox next to it so I can delete multiple images at once when I press the delete button.
My problem is that I can't seem to figure out how to check if the checkbox is checked. if I uncheck one of them and click the delete button it deletes one from the array but I don't know which one was unchecked. For example if I uncheck the second one the array shows:
Array
(
[0] => on
[1] => on
)
but I don't know which of the three was unchecked?
Here is the code I have been testing with:
<?php
// if submit button is clicked
if(isset($_POST['submit'])) {
// do delete function();
Bookmarks