The task is banal, but I do not understand how to do it. It is necessary to make it so that from the list of elements it is possible to delete several elements at once. In the shape of
<form name="del_id" action="delete.php" method="GET"> <input type="checkbox" name="del_id" value="1"> <input type="checkbox" name="del_id" value="2"> <input type="checkbox" name="del_id" value="3"> </form> In the address bar I get, for example, delete.php? Del_id = 2 & del_id = 3 But how can I get different values of the same variable from the $ _GET array? When different variables - everything is clear. When the value is the same, everything is clear. And here you need to somehow count and parse the variables $ _GET-array and insert into the SQL query. Tell me please.