Actually m a beginner to PHP.... n want to know how can we use PHP code in a html page to build a contact form ....so that it works.... I used some of the codes posted in forums but...I want to know can we use a gmail account as a recipient email address. if yes then please help me out...if not then then what is the right way to build a contact form in a website so that the data of that form can be receive in a particular email id.
A contact form can be sent to any email address - it's not fussy about that. The form needs to have the "action" set to your php script The script then works through either the $_GET or $_POST variables and either builds up the string that will be the body of your email, saves to the database etc It can then use mail() to send the email to you Have you searched for contact form tutorial? It seems there are plenty of help: http://www.google.co.nz/search?q=php+contact+form+tutorial
You can read some simple code about this before start to begin with this form type. - You can be spammed by bot through this form - Your mailbox can be full soon. So you need: - smtp mail protocol function - capcha code generator function - and your programing skill That's all.
Ah, one more thing. As you want to use gmail as primary contact email, this case I currently don't try yet. With smtp protocol function I think you can do that because you can you smtp gmail account to send email. But I don't know how to do. Hehe
absolutely right sarahk ... if you have any query you can easily search tutorial from google.... if you do practically it will help you to learn ...
Thanks for this link. Let's go to the party .. . wowowo it's just search result, but I think it is enough.
Nobody is going to give a link and say this is absolutely the right one because you may need something different. Pointing you in the right direction is totally appropriate.
i agree with sarahk! even if someone will give you the exact link of tutorial/snippet, only you know if it fits to your requirements or not, so try to get used to search engines on your own, as its something we have to learn to learn other things on internet.