bruckerrlb Posted April 1, 2008 Share Posted April 1, 2008 hello, Hello all, I am trying to set something up where, when someone clicks on a link, the link goes to my contact page, and the subject in the contact form is already the subject of that page. Let me give an example. When someone goes to the "cell phone info" page, and they click on the link that says request more information, the contact page comes up with "more info about cell phones" in the subject line. Does anyone have any suggestions? Thanks Link to comment https://forums.phpfreaks.com/topic/99042-solved-dynamic-form-data/ Share on other sites More sharing options...
papaface Posted April 1, 2008 Share Posted April 1, 2008 Make a link using $_GET echo '<a href="cellphoneinfo.php?s='.urlencode("more info about cell phones").'">cell phone info</a>'; on cellphoneinfo.php you would have somewhere: echo urlencode($_GET['s']); and that would show the words "more info about cell phones" where ever you want. Link to comment https://forums.phpfreaks.com/topic/99042-solved-dynamic-form-data/#findComment-506789 Share on other sites More sharing options...
bruckerrlb Posted April 1, 2008 Author Share Posted April 1, 2008 That worked excellent! Thanks! Link to comment https://forums.phpfreaks.com/topic/99042-solved-dynamic-form-data/#findComment-506831 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.