I have one page where when I click on a link, I want to use a string from that link to automatically input a value for a text box in another page.
For the first page, this is what I have.
<a href="form1.php?dom=<?php echo(urlencode("google.com"))?>>Google.com</a>
The forms page I have this.
<input type=text name='Domain' value="<?php=$_POST['$dom']?>">
Please help me. Thanks.