Hi
i got a problem to get some variable from a form
i set the variable with
<input type=\"hidden\" name=\"maxt1\" size=\"40\">
<input type=\"hidden\" name=\"maxt2\" size=\"40\">
<input type=\"hidden\" name=\"maxt3\" size=\"40\">
and send them with post to the next file.
action="xml.php?id=3"
in the new file i will echo all files but donīt know the way i tried this
for $i = 0; $i <=$_GET['id']; $i++)
{
echo $_POST['maxt$i'];
}
but the varialbes are empty ?
whats the misstake i made ?
thx
darph