Hello,
I have a form with a dynamic checkbox structure:
for ($ix=1; $ix<=$anzahl; $ix++)
{
echo "<TR><TD align=right>$ix.</TD><TD ALIGN=\"center\">";
echo "<input type=\"radio\" name=\"partei[$ix]\" value=\"Sel1\"></TD><TD
align=\"center\">";
echo "<input type=\"radio\" name=\"partei[$ix]\" value=\"Sel2\"></TD>";
}
At least at the screen everything works as was supposed to do.
I send the form with POST.
How do I access the array to work with the state of the checkboxes?
My tries with ($ix=loop count)
echo $_POST['partei[$ix]'];
oder
echo $_POST[$partei[$ix]];
don't give me a value back.
Thanks Kay