Posted by George
2016-11-07

Thanks for your prompt reply.
We want to make a registration form in a database with information not the user is typing and will not appear on the form.
The automatic information will be presented by different articles we have on our website example (article title) (product number)
This information will go to the registration form with the form:
http://mysite.com/web/form/index.php; article-title = my title & id-product = 4
and they will automatically be submitted to the form as:
<Td class = 'column_value'>
<Input type = 'text' name = 'f0009' value = '<? Php echo $ _GET [' article-title ']?>' Size = "50" readonly />
</ Td>
And
<Td class = 'column_value'>
<Input type = 'text' name = 'f0010' value = '<? Php echo $ _GET [' id-product ']?>' Size = "50" readonly />
</ Td>
Our problem is that the information does not go to the second page of form (tpl.contacts.reg_page2.inc.php) and not recorded in the database.
If you want give me an e-mail to show the demo form.
Thank you very much
Posted by Tom
2016-11-08

>The automatic information will be presented by different articles we have on our website example

OK then don't bother the form. You are making things more difficult.
You should write a script that will put $_GET/$_POST values to the database.