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
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