Debt Consolidation - Debt Consolidation - Wordpress Themes - Debt Consolidation - Debt Consolidation

PDA

View Full Version : Carry from data by url


rivermember123456
Mar 21st 2008, 5:53 am
i m 0 in php programming but i want to know how is it possible to fill a form in previous page
for example in the first page there is only on field to enter domain name
and in the 2nd page we have a domain registration form

how can we fill the domain name field in the 2nd page by asking it in the previous page without saving text data in db

ex: domain.com/form.php?something=sth

thanks

Im The ONE
Mar 21st 2008, 7:09 am
domain.com/form.php?something=sth

Parameter "something" can be accessed in form.php as $abc = $_GET['something']
with that $abc will have value sth

geforce
Mar 21st 2008, 7:33 am
Also make sure your first form has: method="GET" in the form tags.