In your query string (or POST data it does not really matter), you should end up with:
http:
PHP will parse this on $_GET["foo"], and it will be an array with members 1, 2, and 3. How you control which of the forms is up to you. In the past, I have called various checkboxes “check []”, for example.
source
share