Hello
Is there any way to get a 'create text file' script to receive ANY and ALL variables from the form created below and put them ALL in another text file without having to manually declare all the variables manually:
<?php
$readfile = file("temporary_txt/username.txt");
for ($i=0; $i<=count($readfile)-1; $i++) {
$fields = split("\t",$readfile[$i]);
print("entry $i<br>
<input type=\"hidden\" name=\"star$i\" value=\"$fields[0]\"><br>
<input type=\"text\" name=\"con$i\" value=\"$fields[1]\"><br>
<input type=\"hidden\" name=\"end$i\" value=\"$fields[2]\"><br>");
} ?>
The file username.txt is a constatly appended file so its of an undetermanable size so the variables names are generated dynamicaly using $i.
Any help would be as ever greatly appreciated!
Cheers John