How do I grab the details from any form using method=get place these in hidden fields in a php script and send these to a formmail.cgi script.
Your help would be greatly appreciated. Many Thanks Adrian
$got=$_GET['name']; //you can do anything here....
Frome the $_GET array.
If your query string contains ?name=Charles&email=chas@domain.com
then $GET['name'] contains "Charles" and $GET['email'] contains "chas@domain.com"
To put in hidden fields
<input type="hidden" name="name" value="<?=$_GET['name']?> >
hth