Can somebody tell me why the following doesn't work. This is hugely simplified from the website. Basically, I have 4 input boxes, with the input name being an array fix[].
When I GET these inputs fix[0], fix[1], etc., they are fine. But when I try to use fix[1], fix[2], etc. in another array, it fails. The code is very simple and is below.
Thanks in advance for your help.
MIchael Smith
<?php
$testArray = array(10,20,30,40);
if(array_key_exists('fixGetter', $_GET)) {
if (isset($_GET['fix'])) {
for ($i=0; $i<=count($_GET['fix'])-1; $i++) {
echo $_GET['fix'][$i];
echo $testArray[$_GET['fix'][$i]];
}
}
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<form action="<?php echo $_SERVER['PHP_SELF'] ?>" method="GET">
<p class="input"><input name="fix[]" type="checkbox" value=" <?php echo 1; ?> "> </p>
<p class="input"><input name="fix[]" type="checkbox" value=" <?php echo 2; ?> "> </p>
<p class="input"><input name="fix[]" type="checkbox" value=" <?php echo 3; ?> "> </p>
<p class="input"><input name="fix[]" type="checkbox" value=" <?php echo 4; ?> "> </p>
<input type="submit" name="fixGetter" id="fixGetter" value="Calculate">
</form>
</body>
</html>