-1

今日の苦境は php の形です。この 'send_contact' スクリプトは、単にメッセージをエコーするのとは対照的に、実際には非常に基本的なものです。素敵なスタイルの html ページにエコーまたはリダイレクトしたいと考えています。

    <?php
    // Contact Subject
    $fullname = $_POST["full_name"];
    // Details
    $businessname = $_POST["business_name"];
    $addressline1 = $_POST["address_line_1"];


    //HTML email
    $headers = "MIME-Version: 1.0" . "\r\n";
    $headers .= "Content-type:text/html;charset=iso-8859-1" . "\r\n";
    // Mail of Sender
    $mail_from = $_POST["email_addr"];
    //From
    $headers .="from: <".$mail_from.">";

    //Enter your email address
    $to ="mywifelovesphp@php.co.uk";
    $subject = "Catalogue Request - ".date("d/m/Y");
    $message = "<html> <body>";
    $message .= "<h3>".$businessname."</h3>\r\n";
    $message .= $fullname."\r\n";
    $message .= $addressline1."\r\n";
    $message .= "</body></html>";

    $send_contact=mail($to,$subject,$message,$headers);


    //Check, if message sent to your email
    //display message "We've recieved your information"
    if($send_contact)
    {echo "We've recieved your information";
    }
else {
echo "Error";
}   
    ?>
4

1 に答える 1