Ok, i have made a contact form. i need a php script to email me the information. Here is what i have so far:

<?php
$emailSubject = 'Contact Form';
$webMaster = 'huntermitchell386@gmail.com';

$firstName = $_POST ['first_name'];
$lastName = $_POST['last_name'];
$emailAddress = $_POST ['email'];
$uploadFile = $_POST ['datafile'];
$questions = $_POST ['comments'];

/* If e-mail is not valid show error message */
if (!preg_match("/([\w\-]+\@[\w\-]+\.[\w\-]+)/", $email))
{
show_error("E-mail address not valid");
}

Ok, i have tried and tried to make one that will submit a uploaded file. i can not find anything. It is either to hard, or will not work. please help me.

Also, where it says:

['first_name'];

is that where i put my input name?

Also, i have a thank you page. It is called: thank_you.html i need that to show up after the form is sent!

link|improve this question
What do you mean by "put my input name"? If someone entered his first name in the html formular field named "first_name" than you will have this value in $_POST['first_name'] when the form is submitted. – fkerber Jan 8 at 20:45
is that where i put my input name? YES. Make sure sanitize user input. – ZeroSuf3r Jan 8 at 20:45
yes, sorry, i am bad at explaining. – Hunter M Jan 8 at 20:47
i really need some help, i have to get this done by today, i am very stressed. – Hunter M Jan 8 at 20:47
See w3schools.com/php/php_file_upload.asp or tizag.com/phpT/fileupload.php Or search for "php file upload" and you will find many other examples on how you have to do it. – Raffael Luthiger Jan 8 at 21:00
show 1 more comment
feedback

closed as not constructive by Jared Farrish, home, Michael Robinson, johannes, Johnsyweb Jan 9 at 3:37

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

2 Answers

up vote 0 down vote accepted
$to_name = stripslashes($_POST['to_name']);

$from_name = stripslashes($_POST['from_name']);

$subject = stripslashes($_POST['subject']);

$body = stripslashes($_POST['body']);

$to_email = $_POST['to_email'];

$attachment = $_FILES['attachment']['tmp_name'];

$attachment_name = $_FILES['attachment']['name']; 

if (is_uploaded_file($attachment)) { //Do we have a file uploaded?

  $fp = fopen($attachment, \"rb\"); //Open it

  $data = fread($fp, filesize($attachment)); //Read it

  $data = chunk_split(base64_encode($data)); //Chunk it up and encode it as base64 so it can emailed

    fclose($fp);

}

//Let's start our headers

$headers = \"From: $from_name<\" . $_POST['from_email'] . \">\n\";

$headers .= \"Reply-To: <\" . $_POST['from_email'] . \">\n\"; 

$headers .= \"MIME-Version: 1.0\n\";

$headers .= \"Content-Type: multipart/related; type=\\"multipart/alternative\\"; boundary=\\"----=MIME_BOUNDRY_main_message\\"\n\"; 

$headers .= \"X-Sender: $from_name<\" . $_POST['from_email'] . \">\n\";

$headers .= \"X-Mailer: PHP4\n\";

$headers .= \"X-Priority: 3\n\"; //1 = Urgent, 3 = Normal

$headers .= \"Return-Path: <\" . $_POST['from_email'] . \">\n\"; 

$headers .= \"This is a multi-part message in MIME format.\n\";

$headers .= \"------=MIME_BOUNDRY_main_message \n\"; 

$headers .= \"Content-Type: multipart/alternative; boundary=\\"----=MIME_BOUNDRY_message_parts\\"\n\"; 



$message = \"------=MIME_BOUNDRY_message_parts\n\";

$message .= \"Content-Type: text/plain; charset=\\"iso-8859-1\\"\n\"; 

$message .= \"Content-Transfer-Encoding: quoted-printable\n\"; 

$message .= \"\n\"; 

/* Add our message, in this case it's plain text.  You could also add HTML by changing the Content-Type to text/html */

$message .= \"$body\n\";

$message .= \"\n\"; 

$message .= \"------=MIME_BOUNDRY_message_parts--\n\"; 

$message .= \"\n\"; 

$message .= \"------=MIME_BOUNDRY_main_message\n\"; 

$message .= \"Content-Type: application/octet-stream;\n\tname=\\"\" . $attachment_name . \"\\"\n\";

$message .= \"Content-Transfer-Encoding: base64\n\";

$message .= \"Content-Disposition: attachment;\n\tfilename=\\"\" . $attachment_name . \"\\"\n\n\";

$message .= $data; //The base64 encoded message

$message .= \"\n\"; 

$message .= \"------=MIME_BOUNDRY_main_message--\n\"; 



// send the message

mail(\"$to_name<$to_email>\", $subject, $message, $headers); 

http://icrontic.com/discussion/7019/php-email-form-with-attachments

link|improve this answer
i need a script added to the one above that will allow me to receive a file. – Hunter M Jan 8 at 20:55
you mean receive or send as an attachment? – Alvaro Arregui Jan 8 at 21:04
if what you are trying to do is send an attachment: finalwebsites.com/forums/topic/php-e-mail-attachment-script – Alvaro Arregui Jan 8 at 21:11
i want a person to send a file and me receive it – Hunter M Jan 8 at 21:15
well just take a look at that link, its a pretty good example you will just need to ad the file andling part(upload it to a tmp file to your server and then send it) – Alvaro Arregui Jan 8 at 21:20
show 3 more comments
feedback
$em = $_POST ['email'];
list($username,$domain)=split('@',$em);
if(!checkdnsrr($domain,'MX')) echo 'please enter a proper e-mail address.';

something like this also will be useful, this just checks mx records..

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.