0

我正在尝试调整 php 脚本以使用我在我的网站上使用的联系表格。尝试查看页面时出现以下错误:

解析错误:语法错误,文件意外结束

如果我一起删除脚本,我可以查看我的页面,所以我认为脚本可能不完整?

表单和脚本代码如下:

<form name="hongkiat" id="hongkiat-form" method="post" action="index.php">  
            <div id="wrapping" class="clearfix">  
                <section id="aligned">  
                    <input type="text" name="name" id="name" placeholder="Your name" autocomplete="off" tabindex="1" class="txtinput">  
                    <input type="email" name="email" id="email" placeholder="Your e-mail address" autocomplete="off" tabindex="2" class="txtinput">  
                    <input type="url" name="website" id="website" placeholder="Website URL" autocomplete="off" tabindex="3" class="txtinput">  
                    <input type="tel" name="telephone" id="telephone" placeholder="Phone number?(optional)" tabindex="4" class="txtinput">  
                    <textarea name="message" id="message" placeholder="Enter a cool message..." tabindex="5" class="txtblock"></textarea>  
                </section>  
            </div>
            <section id="buttons">  
                <input type="reset" name="reset" id="resetbtn" class="resetbtn" value="Reset">  
                <input type="submit" name="submit" id="submitbtn" class="submitbtn" tabindex="7" value="Submit this!">  
                <br style="clear:both;">  
            </section>

            <?php
            $name = $_POST['name'];
            $email = $_POST['email'];
            $website = $_POST['website'];
            $telephone = $_POST['telephone'];
            $message = $_POST['message'];
            $from = 'web address here'; 
            $to = 'email here'; 
            $subject = 'Message from mh web';
            $body = "From: $name\n E-Mail: $email\n Website URL: $website\n Telehone: $telephone\n Message:\n $message";
            if ($_POST['submit'])  
            {                
            if (mail ($to, $subject, $body, $from)) 
            { 
                echo '<p>Your message has been sent!</p>';
            } 
            else 
            { 
                echo '<p>Something went wrong, go back and try again!</p>'; 
            } 
            ?>

        </form>
4

1 回答 1

1

您需要在 ,}之前?>再关闭一个if($_POST['submit']){块。这很容易看出代码是否正确缩进:

        if ($_POST['submit'])  
        {                
            if (mail ($to, $subject, $body, $from)) 
            { 
                echo '<p>Your message has been sent!</p>';
            } 
            else 
            {  
            echo '<p>Something went wrong, go back and try again!</p>'; 
            }
        // oops!  missing }
        ?> 
于 2013-04-25T21:41:01.103 回答