twitch23 Posted November 19, 2010 Share Posted November 19, 2010 <?php // your email address $youremail = "[email protected]"; // the subject of the email $msg = $_POST['notes']; $subject = $_POST['subject']; $email = $_POST['email']; $name = $_POST['name']; if(empty($youremail)) { die("No email address added. Please go back."); } elseif(empty($name)) { die("No name added. Please go back."); } elseif(empty($msg)) { die("No notes added. Please go back."); } else { if(mail($youremail, $subject, $msg, "From: $email\r\nReply-to: $email\r\n")) { echo "Email sent."; } else { echo "Mail() is not enabled."; } } $ch1 = $_POST['ch1']; $ch2 = $_POST['ch2']; $ch3 = $_POST['ch3']; $ch4 = $_POST['ch4']; $ch5 = $_POST['ch5']; ?> Thats the code i got so far i need it to mail the checked options with the messeges..... Thank you Quote Link to comment https://forums.phpfreaks.com/topic/219174-i-need-help-with-check-boxes-please/ Share on other sites More sharing options...
Adam Posted November 19, 2010 Share Posted November 19, 2010 And your problem is..? Quote Link to comment https://forums.phpfreaks.com/topic/219174-i-need-help-with-check-boxes-please/#findComment-1136525 Share on other sites More sharing options...
twitch23 Posted November 19, 2010 Author Share Posted November 19, 2010 Problem is that it currently isnt sending the checked answers with the messege Quote Link to comment https://forums.phpfreaks.com/topic/219174-i-need-help-with-check-boxes-please/#findComment-1136526 Share on other sites More sharing options...
JasonLewis Posted November 19, 2010 Share Posted November 19, 2010 Because you declare the variables at the bottom. And you're not including them in your message. As $msg is coming from the form as well. Is this your code or is it someone elses? Quote Link to comment https://forums.phpfreaks.com/topic/219174-i-need-help-with-check-boxes-please/#findComment-1136563 Share on other sites More sharing options...
twitch23 Posted November 19, 2010 Author Share Posted November 19, 2010 My friend helped me code this. Quote Link to comment https://forums.phpfreaks.com/topic/219174-i-need-help-with-check-boxes-please/#findComment-1136798 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.