FeedBack Form in php

Thread Solved
Reply

Join Date: Apr 2008
Posts: 13
Reputation: nickyspace is an unknown quantity at this point 
Solved Threads: 0
nickyspace's Avatar
nickyspace nickyspace is offline Offline
Newbie Poster

FeedBack Form in php

 
0
  #1
Apr 11th, 2008
Hi

I have issue regarding the mail, which is not sending to my mail account.



1. <html>
2. <body>
3. <?php
4. if (isset($_POST['email']))
5. //if "email" is filled out, send email
6. {
7. //send email
8. $email = $_POST['email'] ;
9. $subject = $_POST['subject'] ;
10. $message = $_POST['message'] ;
11. mail( "yourname@example.com", "Subject: $subject",
12. $message, "From: $email" );
13. echo "Thank you for using our mail form";
14. }
15. else
16. //if "email" is not filled out, display the form
17. {
18. echo "<form method='post' action='phpmail.php'>
19. Email: <input name='email' type='text' /><br />
20. Subject: <input name='subject' type='text' /><br />
21. Message:<br />
22. <textarea name='message' rows='15' cols='40'>
23. </textarea><br />
24. <input type='submit' />
25. </form>";
26. }
27. ?></body>
28. </html>

plz anybody can figure it out why my mail is not receiving in my mail account.
Reply With Quote Quick reply to this message  
Join Date: Nov 2007
Posts: 183
Reputation: lydia21 is an unknown quantity at this point 
Solved Threads: 5
lydia21 lydia21 is offline Offline
Junior Poster

Re: FeedBack Form in php

 
0
  #2
Apr 11th, 2008
  1. $email = $_REQUEST['email'] ;
  2. $subject = $_REQUEST['subject'] ;
  3. $message = $_REQUEST['message'] ;
  4. mail( "yourname@example.com", $subject,$message, $email");
  5. echo "Thank you for using our mail form";
  6.  
Reply With Quote Quick reply to this message  
Join Date: Jun 2007
Posts: 1,225
Reputation: kkeith29 has a spectacular aura about kkeith29 has a spectacular aura about kkeith29 has a spectacular aura about 
Solved Threads: 166
kkeith29's Avatar
kkeith29 kkeith29 is offline Offline
Nearly a Posting Virtuoso

Re: FeedBack Form in php

 
0
  #3
Apr 11th, 2008
nevermind, my suggestion would work but I would have to rewrite you code. forget this post
Last edited by kkeith29; Apr 11th, 2008 at 9:02 am.
Reply With Quote Quick reply to this message  
Join Date: Apr 2008
Posts: 13
Reputation: nickyspace is an unknown quantity at this point 
Solved Threads: 0
nickyspace's Avatar
nickyspace nickyspace is offline Offline
Newbie Poster

Re: FeedBack Form in php

 
0
  #4
Apr 12th, 2008
Thanxs for replying

i got solution and my issue is been resolved
Reply With Quote Quick reply to this message  
Reply

This thread has been marked solved.
Perhaps start a new thread instead?
Message:



Other Threads in the PHP Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC