I\'m using checkboxes to search a mysql database I have created. As the checkboxes all use the same name, when I use $_GET, it only gets the last value in the URL.
I have never tried it with $_GET, but if you use $_POST you can do something like this:
<input type="checkbox" name="car[]" value="honda" /> Honda
<input type="checkbox" name="car[]" value="ford" /> Ford
<input type="checkbox" name="car[]" value="toyota" /> Toyota
// note the [] in the name
so that $car = $_POST['car'] is an array
You can try it with $_GET as well and see.
PHP is a little odd here. Using its standard form data parser, you must end the name of the controls with []
in order to access more than one of them.
<input type="checkbox" name="foo[]" value="bar">
<input type="checkbox" name="foo[]" value="bar">
<input type="checkbox" name="foo[]" value="bar">
Will be available as an array in:
$_GET['foo'][]
If you don't want to rename the fields, then you will need to get access to the raw data ($_SERVER['REQUEST_URI']
) and parse it yourself (not something I'd recommend).
you need to make the NAME for that variable a HTML array'd variable so on the form, it would be
<input name='features[]'/>
Name your checkbox elements "features[]" in html. That way they will be passed as an array.