ok... first of all... can i send and get checkboxes values to/from $GET just like $POST or is there some issues?
i am using this code on the form
<form name="form1" method="get" action="index.php">
<$php
querydb="select * from uploadsites";
$result=mysql_query($querydb);
while ( $array=mysql_fetch_array($result) ){
echo "<input type=\"checkbox\" name=\"".array[]." value=\"".$array["id"]."\">". $array["name"].
"<br>";
}
?>
</form>
but i am having troubles figuring out where to get the values from.
shouldnt they be in
$_GET["array"];
?
btw, what's the easyest way to print an associative array?