Ask Experts Questions for FREE Help !
Ask
    kriska0308's Avatar
    kriska0308 Posts: 1, Reputation: 1
    New Member
     
    #1

    Aug 7, 2012, 11:48 AM
    Need help with PHP
    Hi, I have a question regarding a submission form I created with HTML. In order for the input info to be sent to my email I must use a peace of code (PHP). I'm a bit confused as to what to do with the PHP code. Do I put it inside my HTML document? The website where I got the code from tells me to load the PHP to a server. Basically, my question is what must I do with the code and where do I put it?

    This is what the website tells me to do:

    'File Name: send_form_email.php (you must use this filename exactly)'.

    Here is the PHP code:
    <?php
    if(isset($_POST['email'])) {

    // EDIT THE 2 LINES BELOW AS REQUIRED
    $email_to = "[email protected]";
    $email_subject = "Your email subject line";


    function died($error) {
    // your error code can go here
    echo "We are very sorry, but there were error(s) found with the form you submitted. ";
    echo "These errors appear below.<br /><br />";
    echo $error."<br /><br />";
    echo "Please go back and fix these errors.<br /><br />";
    die();
    }

    // validation expected data exists
    if(!isset($_POST['first_name']) ||
    !isset($_POST['last_name']) ||
    !isset($_POST['email']) ||
    !isset($_POST['telephone']) ||
    !isset($_POST['comments'])) {
    died('We are sorry, but there appears to be a problem with the form you submitted.');
    }

    $first_name = $_POST['first_name']; // required
    $last_name = $_POST['last_name']; // required
    $email_from = $_POST['email']; // required
    $telephone = $_POST['telephone']; // not required
    $comments = $_POST['comments']; // required

    $error_message = "";
    $email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
    if(!preg_match($email_exp,$email_from)) {
    $error_message .= 'The Email Address you entered does not appear to be valid.<br />';
    }
    $string_exp = "/^[A-Za-z .'-]+$/";
    if(!preg_match($string_exp,$first_name)) {
    $error_message .= 'The First Name you entered does not appear to be valid.<br />';
    }
    if(!preg_match($string_exp,$last_name)) {
    $error_message .= 'The Last Name you entered does not appear to be valid.<br />';
    }
    if(strlen($comments) < 2) {
    $error_message .= 'The Comments you entered do not appear to be valid.<br />';
    }
    if(strlen($error_message) > 0) {
    died($error_message);
    }
    $email_message = "Form details below.\n\n";

    function clean_string($string) {
    $bad = array("content-type","bcc:","to:","cc:","href");
    return str_replace($bad,"",$string);
    }

    $email_message .= "First Name: ".clean_string($first_name)."\n";
    $email_message .= "Last Name: ".clean_string($last_name)."\n";
    $email_message .= "Email: ".clean_string($email_from)."\n";
    $email_message .= "Telephone: ".clean_string($telephone)."\n";
    $email_message .= "Comments: ".clean_string($comments)."\n";


    // create email headers
    $headers = 'From: '.$email_from."\r\n".
    'Reply-To: '.$email_from."\r\n" .
    'X-Mailer: PHP/' . Phpversion();
    @mail($email_to, $email_subject, $email_message, $headers);
    ?>

    <!-- include your own success html here -->

    Thank you for contacting us. We will be in touch with you very soon.

    <?php
    }
    ?>

Check out some similar questions!

Php ask for help [ 1 Answers ]

Hi. I have a problem here. When I write a username that doesn't exist I get no message up on the page. <?php $username = $_POST; $password = $_POST; if ($username&&$password) {

Update in PHP [ 2 Answers ]

This is my code.Please tell me how to update it.How can I get values individually so that I can update my database.please help me... <?php $con = mysql_connect("localhost","root",""); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("hai", $con);

How do I install php [ 2 Answers ]

How do I install php in my laptop

Error in php [ 2 Answers ]

I done a project. I write a following php script and create the mysql database.But I run the php file they show me error. What is the error <?php $con=mysql_connect("localhost","root"); if(!$con){ die('could not connect:'.mysql_error()); } mysql_select_db("project",$con);

PHP Contactform [ 2 Answers ]

Hi guys, Got a question about something I need for my contactform. Currently I have 3 fields, which work fine and I receive all properly in my mailbox. But now I'd like to add a drop-downmenu using <select><option></option></select>. I just can't figure out what PHP lines to write, so I...


View more questions Search
 

Question Tools Search this Question
Search this Question:

Advanced Search

Add your answer here.