So I have form which I am using, made in dreamweaver, and I want to pass on variables from the form to the 'thank you' page. let's say my url is like http://www.domainname.com/thanks.php?Full_Name=mike&submission_id=6 etc. etc. how can I pass on these variables (full_name = mike) to the receipt page? Thanks
You would need to place a hidden form field on the form. In HTML context, an example would be: <form name="xxx" action="/thanks.php"> <input type="hidden" name="Full_name" value="Mike"> </form>