Wgkadvert Posted February 4, 2013 Share Posted February 4, 2013 Hello. I am new to PHP and need assistance with the PHP code for submitting a form/survey via e-mail to the site owner. I have created the survey and would like for the user to be taken to a success page where the score from the survey is displayed after they hit the submit button, and then have the results e-mailed privately to the site owner. Right now, the results are being displayed in the HTML document. Any assistance that you may be able to give me would be greatly appreciated. I have searched many websites and forums and have found a few that work the way I would like, but since I am new to PHP, I am unable to implement them into my project. Here is the link to our test page http://www.advertools.net/smokingquiz.html Quote Link to comment https://forums.phpfreaks.com/topic/274017-first-time-php-user-help-submitting-surveyform-and-e-mail-site-owner-results/ Share on other sites More sharing options...
Christian F. Posted February 4, 2013 Share Posted February 4, 2013 The best way to solve this, would be to save the results in a database (or something like that), grab the ID of the row, and then redirect the user to the "confirmation" page after successful submission. The mailing itself is done right before you redirect the user, and is pretty much done in the exact same way as a contact script is set up. In fact, the PHP manual page for mail () should have all of the information you need for this bit. If you're still stuck with the code, then we can always help you out. Just remember to post the (relevant) code in tags, along a detailed explanation of what you're trying to accomplish with the code, what you expected it to give you, and what it is actually doing. Should you be getting any error messages, then posting the complete message would also be most helpful. After you've done a search for it on the net, of course. Quote Link to comment https://forums.phpfreaks.com/topic/274017-first-time-php-user-help-submitting-surveyform-and-e-mail-site-owner-results/#findComment-1410101 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.