works fine in FF, not in IE
form
go.php
any ideas why?
are there other ways in php to recognize the array?
form
Code:
<form action = go.php method = get> <input type='checkbox' name='id[]' value='1'> <input type='checkbox' name='id[]' value='2'> <input type='checkbox' name='id[]' value='3'> <input type=submit value='Send'> </form>
Code:
if (is_array($_GET["siteid"]))
{
echo "IS ARRAY";
}
are there other ways in php to recognize the array?
Comment