hi,
How can I define a global variable in a form . So I can then use
its value in all web pages.
ex:
printf("<form action='main.php' method='post'>");
printf("<input type='hidden' name='react' value='name'>Enter name of file to store your result in it");
printf("<br><br>");
printf("<input type='text' name='tname'>");
printf("<br><br>");
printf("<input type='submit' value='Go to Main'>");
printf("</form>");
I used the value $tname in main.php to create afile (file name will be = to $tname)
my question how to use this value in other pages to insert values in the table :
insert into ??? values ......