I have a form such as this:
<form method="get">
<input name="item" type="checkbox" value="1">Item 1
<input name="item" type="checkbox" value="2">Item 2
<input name="submit" type="submit" value="go">
</form>
When I submit this form I get the following URL: domain.com?item=1&item=2&value=go
How do I tell PHP to extract the same variable for the different values?
TIA,
Allen.