i have a few different contact forms on my new website. there is 1 main one and few smaller ones. how do i setup a send.php file for these?
hmmm.... depends what is in your HTML form for example what type of fields your form has and what do you want to do with data contained it fields. So better post this question with your HTML code in programming forum for which you want a send.php file.
Here is a simple example (from Alleycode HTML Editor) <?php // Update variables as needed... $mail_to ="someone@yourdomain.com"; $mail_subject = "Hi there!"; $mail_body = "Nice to see you are practicing your PHP. Btw don't forget to look in our help section for more tips"; if(mail($mail_to, $mail_subject, $mail_body)){ echo "Successfully sent the e-mail \"$mail_subject\" to $mail_to."; } else { echo "Failed to send the e-mail \"$mail_subject\"."; } ?>
A very nice php script to use for your feedback form is simplescript.php. Do a search for it on Google....
If i had not mistaken, You are about to send a set of contacts as email that are received form the input fields of you html page. Am I right?