Hi,
I have a problem evaluating a HTML Form like this:
<form method="post" action="action.php">
<input type=checkbox name="del" value="1">
<input type=checkbox name="del" value="2">
<input type=checkbox name="del" value="3">
<input type=checkbox name="del" value="4">
<input type=checkbox name="del" value="5">
<input type=checkbox name="del" value="6">
:
:
<input type=submit>
</form>
Assume that two or more items are checked.
When submitting the form I will always get only one variable $del with the last checked value. How can I get all checked item values (for example as an array of values) ?
Thanks,
Tom