0

嘿,伙计,我创建了这个表格,它可以滑出,您可以与它联系,它位于标题中。出于某种原因,如果我提交它,它告诉我找不到页面 - 我创建了一个页面并给了它一个发送电子邮件的模板。如果我只是点击没有值的提交按钮,它会转到带有感谢信息的页面。

联系代码:

<div id="feedback"><!-- Sliding contact form ---->

        <form method="post" action="../contactformsubmit">
            <h2>Phone: 847-782-9816</h2>
            <p><label>Name: </label><input type="text" name="name"/></p>
            <p><label>Email: </label><input type="text" name="email"/></p>
            <p><label>Subject: </label><input type="text" name="subject"/></p>
            <p><label>Message: </label><textarea name="message"></textarea></p>
            <p><input type="submit" value="Send" class="btn"/></p>
        </form>
        <a href="#" class="pull_feedback" title="Click to leave feedback" ><img src=""/>Feedback</a>
</div>
<!-- end contact form -->

模板代码:

<?php
/*
Template Name: formsubmit
*/
session_start();
get_header(); ?>
<style>
.item-post{
    margin: 0 0 1.625em;
    padding: 0 0 1.625em;
    position: relative;
    float: left;
    height: 365px;
    width: 100%;
    margin-left: 2%;

}
.singular .item-post{
    text-align:center;  
}
.singular.page .hentry {
    padding:0 0 0 0;
    width: 17%;
    margin-top:1em;
    //height: 405px;

}
.singular.page .hentry:hover{
    background: #C9191B;
}
.singular .entry-title {
    font-size: 15px;
    width: 100%;
    text-align: center;

}
.singular .entry-content {

    width:100%;

}
.singular .entry-header {

    width:100%;
    text-align:center;

}
.singular .discription {
    width: 80%;
    text-align: left;
    font-size: 12px;
    padding-left: 15%;
    height: 12%;
}
.singular .prodslideshow {
    display:none;   
}
.singular .pricing {
    padding-left: 15%;
}
</style>

        <div id="primary">

            <div id="content" role="main">
            <div class="thankyou" style="text-align:center; padding-top:1em; padding-bottom:1em;">
                    <h2>Thank you for contacting us!  We are here to make sure your time with us is a good one!  We will contact you as soon as we can.</h2>
                </div>
            <?php

            $message = $_POST['message'];
            $name = $_POST['name'];
            $email = $_POST['email'];
            $subject = $_POST['subject'];
            /*******SEND EMAIL**********/
                require_once "Mail.php";
                $body = "
Message from contact form!

$name
$email

$message
                ";
                // Send
                $from = "Contact Form ";
                //$to = "";
                $to = "";
                $host = "";
                $username = "";
                $password = "";

                $headers = array ('From' => $from,
                  'To' => $to,
                  'Subject' => $subject);
                $smtp = Mail::factory('smtp',
                  array ('host' => $host,
                    'auth' => true,
                    'username' => $username,
                    'password' => $password));

                $mail = $smtp->send($to, $headers, $body);


            ?>

            </div><!-- #content -->
        </div><!-- #primary -->

<?php get_sidebar(); ?>
<?php get_footer(); ?>
4

2 回答 2

1
<form method="post" action="../contactformsubmit">

您需要确保操作 URL 正确指向您的表单。当前上面的一个正在查看contactformsubmit是否是联系表格上方的一个目录。它可能在同一个文件夹中,因此请尝试:

<form method="post" action="contactformsubmit">

另外,如果您打算进行扩展,我不知道您的特定 SEO 设置,但这也可能是您的意思:

<form method="post" action="contactformsubmit.php">

如果这些不起作用,请发布联系表单和联系表单提交的文件路径和全名,以便我们正确设置 URL。

于 2012-12-15T23:50:49.140 回答
0

因此,我能够解决我的问题,将顶部表单替换为<p><label>Name: </label><input type="text" name="name"/></p><p><label>Email: </label><input type="text" name="email"/></p>更改值。就是这样:) 我认为这是一个间距问题,所以这可能就是原因。

于 2012-12-16T19:10:39.050 回答