| | |||||
| ||||||||
| Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics. |
![]() |
| | LinkBack | Thread Tools |
| | THREAD STARTER #1 (permalink) |
| Web Marketing Specialist Join Date: Oct 2003 Location: Texas, USA
Posts: 1,335
![]() ![]() ![]() | php contact form wioth submit button i have everything werked out, the forms and everything, all made in dreamweaver, but how do i make it to where if you type info and click submit... it goes to my email... or does it HAVE to go to a database. if so... is it a MYsql database? please help contact me on AIM, MSN , or post , or pm me thanks ALOT |
| |
| | #3 (permalink) |
| NamePros Member Join Date: Nov 2003
Posts: 38
![]() | using the mail() feature Using the PHP mail() feature is a great way to reduce spam. When you list your email on a webpage, lookout, here come the junk. anyway.. use the mail() feature like this... <?php mail("recepient@domain.com","subject line here","body of message here"); ?> naturally you can set the recepient, subject and body as strings in php and then just insert the string into the mail() function.. good luck!
__________________ NetButch ... Catch Your Audience! www.netbutch.com |
| |