This is a discussion on Contact Us Form? within the Programming Articles forums, part of the Webmaster Articles/Tutorials category; Ok, so you need a basic script so people can send you feedback? Firstly we need to create a php ...
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| | #1 (permalink) |
| Senior Member | Ok, so you need a basic script so people can send you feedback? Firstly we need to create a php script to send the mail once it has been submitted in the html file. Open up notepad and put this code in it (Change email adress to your email adress and change the urls as well). Code: <?
$email = $_REQUEST['email'] ;
$message = $_REQUEST['message'] ;
if (!isset($_REQUEST['email'])) {
header( "Location: http://www.mydomain.com/feedback.htm" );
}
elseif (empty($email) || empty($message)) {
header( "Location: http://www.mydomain.com/eror.htm" );
}
else {
mail( "randomemailadress@random.com", "Feedback results for my site",
$message, "From: $email" );
header( "Location: http://www.mydomain.com/thankyou.htm" );
}
?>
Now, inside your webpage in body you need to create the form. This is a example of a form, you must change the size of the input boxes and the info you want to receive. Code: <form method="post" action="sendfeedback.php"> Email: <input type="text" name="Email" /> Message:<br /> <textarea name="Message" rows="20" cols="45"> </textarea> <input type="submit" /> </form> Then upload Both the files to the same directory and your done! Ive used this script here but i havnt included the "Having to put in info" php bit as i cant be bothered. Hope this helps, any problems or comments please post below. Thanks Flubber
__________________ -Gary |
| | |
| Tags |
| contact, form |
| Thread Tools | |
| Display Modes | |
| |
| ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Form to Mail | HostYorkshire | Php and MySQL | 0 | 08-01-2007 19:20 |
| Electronic Form | bradk | Website Design Forum | 7 | 03-03-2006 21:34 |
| Form help | JsPLACEwebby | Programming / Scripting / Coding | 2 | 05-12-2005 11:25 |
| Domain renewal, can't contact customer | monaghan | Hosting Forum | 9 | 08-11-2005 19:49 |