Login Register


[HELP] Website Functions! filter_list
Author
Message
RE: [HELP] Website Functions! #13
(12-15-2013, 07:02 PM)Anizeb Wrote: There are a number of things wrong here.

Code:
<td><input type="text" name="email"></td>
and
Code:
<td><textarea type="text" name="message">

are the two things you need to snatch from the orm you've got. You should also include a subject field, or a name one as CamIce seems to have implied. (I've done so below)

So what you want (combining both you and CamIce's code) would be
Code:
<form method="post" name="contact" id="contact"> <table> <tr> <td>Your Email Address</td> <td><input type="text" name="email"></td> </tr> <tr> <td>Subject</td> <td><textarea type="text" name="subject"></textarea></td> </tr> <tr> <td>Your Message</td> <td><textarea type="text" name="message"></textarea></td> </tr> <tr> <td><input type="submit" value="Submit" /></td> </tr> </table> </form>


Code:
<?php $mail = $_POST['email']; $to = 'cbc-chat@hotmail.com'; $subject = 'Contact Form:' . $_POST['subject']; $message = $_POST['message']; $headers = 'From: ' . $mail . "\r\n" . 'Reply-To: ' . $mail . "\r\n" . 'X-Mailer: PHP/' . phpversion(); mail($to, $subject, $message, $headers); ?>

Untested, and it's been ages since I've used PHP, so I may have fucked up. Sorry in advance, if that's the case.

Thanks! I'll try it now and post results.

EDIT:

Hmm, it seems some of the fields don't link.






Messages In This Thread
[HELP] Website Functions! - by Eclipse - 12-15-2013, 01:36 PM
RE: [HELP] Website Functions! - by Equinox - 12-15-2013, 01:58 PM
RE: [HELP] Website Functions! - by TechSaavy - 12-15-2013, 02:02 PM
RE: [HELP] Website Functions! - by Equinox - 12-15-2013, 02:02 PM
RE: [HELP] Website Functions! - by Eclipse - 12-15-2013, 02:09 PM
RE: [HELP] Website Functions! - by Equinox - 12-15-2013, 02:20 PM
RE: [HELP] Website Functions! - by TechSaavy - 12-15-2013, 02:25 PM
RE: [HELP] Website Functions! - by Eclipse - 12-15-2013, 03:56 PM
RE: [HELP] Website Functions! - by TechSaavy - 12-15-2013, 04:09 PM
RE: [HELP] Website Functions! - by Eclipse - 12-15-2013, 05:36 PM
RE: [HELP] Website Functions! - by Eclipse - 12-15-2013, 06:40 PM
RE: [HELP] Website Functions! - by Anizeb - 12-15-2013, 07:02 PM
RE: [HELP] Website Functions! - by Eclipse - 12-15-2013, 07:17 PM
RE: [HELP] Website Functions! - by Anizeb - 12-15-2013, 07:26 PM
RE: [HELP] Website Functions! - by Eclipse - 12-15-2013, 07:27 PM
RE: [HELP] Website Functions! - by Anizeb - 12-15-2013, 07:35 PM
RE: [HELP] Website Functions! - by Eclipse - 12-15-2013, 07:47 PM
RE: [HELP] Website Functions! - by Anizeb - 12-15-2013, 08:05 PM
RE: [HELP] Website Functions! - by Eclipse - 12-15-2013, 08:16 PM
RE: [HELP] Website Functions! - by Anizeb - 12-15-2013, 08:26 PM
RE: [HELP] Website Functions! - by Eclipse - 12-17-2013, 10:42 PM
RE: [HELP] Website Functions! - by Anizeb - 12-17-2013, 10:48 PM
RE: [HELP] Website Functions! - by Eclipse - 12-17-2013, 10:55 PM
RE: [HELP] Website Functions! - by Anizeb - 12-17-2013, 10:59 PM
RE: [HELP] Website Functions! - by Eclipse - 12-17-2013, 11:16 PM
RE: [HELP] Website Functions! - by Anizeb - 12-17-2013, 11:28 PM
RE: [HELP] Website Functions! - by Eclipse - 12-17-2013, 11:31 PM
RE: [HELP] Website Functions! - by Cake - 01-05-2014, 10:00 PM
RE: [HELP] Website Functions! - by Equinox - 01-05-2014, 10:21 PM
RE: [HELP] Website Functions! - by Cake - 01-05-2014, 10:25 PM
RE: [HELP] Website Functions! - by Equinox - 01-05-2014, 10:26 PM
RE: [HELP] Website Functions! - by Cake - 01-05-2014, 10:31 PM
RE: [HELP] Website Functions! - by Equinox - 01-05-2014, 10:32 PM
RE: [HELP] Website Functions! - by Anizeb - 01-05-2014, 10:39 PM
RE: [HELP] Website Functions! - by Eclipse - 01-05-2014, 11:34 PM



Users browsing this thread: 1 Guest(s)