hi
I wrote this simple test program in file test.php:
<?php
$arr = array_keys($_GET);
foreach ($arr as $key) {
print $key . "<br>";
}
?>
<html>
<body>
<form name="entry" method="GET" action="test.php">
<input type="text" name="TX">
<input type="checkbox" name="CH">
<input type="submit">
<input type="hidden" name="HD">
</form>
</body>
</html>
for some reason the checkbox is not being displayed as part of the $_GET array.
This is probably some stupid mistake on my part.
can anyone see it?
thanks in advance