Hello:
I have a problem that is driving me crazy. I have a very long form that has 555 radio buttons and 4 hidden fields. The form look like this:
<form name="form1" method="get" action="test_a2c.php" target="_parent">
<input type="radio" name="preg_1" value="1">
<input type="radio" name="preg_1" value="2">
<input type="radio" name="preg_1" value="3">
<input type="radio" name="preg_2" value="1">
<input type="radio" name="preg_2" value="2">
<input type="radio" name="preg_2" value="3">
:
:
<input type="radio" name="preg_185" value="1">
<input type="radio" name="preg_185" value="2">
<input type="radio" name="preg_185" value="3">
<input type="hidden" name="cp" value=<?=$cp?> >
<input type="hidden" name="cc" value=<?=$cc?> >
<input type="hidden" name="ru" value=<?=$ru?> >
<input type="hidden" name="in" value=<?=$in?> >
</form>
where $cp, $cc, $ru an $in are varibles posted for another page.
the problem I have is that sometimes the $ru variable (that is a long text) is posted but TRUNCATED and $ni variable is LOST. I have made some tests and I've found the following behavieour:
a) when all checkboxes are checked the problem arises
b) $ru variable is truncated at an aparently random length
c) when I don't check all radiobuttons the variables are posted correctly
I'm guessing that this problem is related to the length of the post, but i don't know how to fix the problem.
I'm using Internet Information Server 5.0, PHP 4.0 and IE5.0
Thanks in advance.