how do i write the data into html after submission via get without using $HTTP_GET_DATA aray?
the script reads line by line from file
and creates a form:
do {
$i++;
$v = "varfield".$i;
$x = "valuiefeld".$i;
echo "<input type=\"hidden\" name=\"varfield[$x]\" value=\"$transname\"><input type=\"text\" name=\"valuefield[$v]\" value=\"$transvalue<br>\n";
} while(($line = next($file)));
how do i write the data back to html after submission?