When I enter my login info to enter the user part of a site I am making, it gets into the for loop where I am dynamically creating text feilds.I have no clue what is going on. When i test it using http:localhost/blah it works fine, but when I try it through the web it dies in the for loop only displaying some of the information.
here is the for loop"
$textFieldCount = 34;
for($f = 1;$f < $countArea; $f++){
echo "<input type='text' name='area[]' value='$areas[$f]'>";
}
$textFieldCount2 = $textFieldCount - $countArea;
for($x = 0;$x < $textFieldCount2; $x++) {
echo "<input type='text' name='area[]' value=''>";
}
I am using the latest stable version of apache? Any help or ideas would be better than fantastic