jasonman1 Posted August 5, 2007 Share Posted August 5, 2007 php's mail() function will send mail php's header() function will re-direct to another page What do I do to make it where it will send the text to my email once submited. I dont know the commands and how to edit my box to make it do that. Also with the php's header fuction, to get it to the next page. Quote Link to comment Share on other sites More sharing options...
Hybride Posted August 5, 2007 Share Posted August 5, 2007 header("Location: http://whatever.com/whatever"); For email, you have to have basically a form, and then put the variables into your email(). Here's the basic version, without the actual form: mail($to, $subject, $body); or as an example mail ('herestosomeone@someplace.com', 'Email subject', $body, 'From: person@whosent.com'); It can only take four options at most, and the fourth parameter ('From') is optional. Quote Link to comment Share on other sites More sharing options...
AndyB Posted August 5, 2007 Share Posted August 5, 2007 @jasonman1 The php manual - online at php.net - include example uses for all of the php functions. Easy to find, easy to use, easy to test. Try writing your own code and then if you still have problems, ask specific questions and post your own code for help Quote Link to comment 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.