简单表单不会重定向到电子邮件中的给定操作

时间:2012-06-30 07:32:53

标签: php email

我想要实现的目标:

我有一个简单的html表单,我通过phpmailer发送了该表单,电子邮件已成功发送。但问题是,当我点击电子邮件中的提交按钮时,表单不会重定向到任何不显示任何警报等的地方。

表格是:

<table align='center' width='630' border='0' cellspacing='0' cellpadding='4' style="border-collapse:collapse;">
    <form action='http://www.example.com/users/mailing/mail_layout/post_buyer_form_mail.php' name="dataform" method='post'>
        <tr>
            <td  colspan="2" align='left'><label style='font-weight:bold;font-family:Arial;font-size:12px;'>Product you are looking to By :</label><br />
                <input style='font-size:11px;color:#666;padding:3px;' name='pb_title' size='120' />
            </td>
        </tr>
        <tr>
            <td colspan="2" align='left' valign='top'><label style='font-weight:bold;font-family:Arial;font-size:12px;'>Describe your Buying Requirements in details :</label><br />
                <textarea name="pb_requirement" style='font-size:11px;color:#666;padding:3px;resize:none;' cols="86" rows="5"></textarea>
            </td>
        </tr>
        <tr>
            <td><input type="submit" name="submit" value="submit"/>
            </td>
        </tr>
    </form>
</table>

无法理解问题出在哪里,这是我第一次将完整的表单发送到电子邮件并重定向..

1 个答案:

答案 0 :(得分:2)

尝试将表单标记放在表标记周围,看看是否有帮助。

<form...>
  <table>
  ...
  </table>
</form>

希望有所帮助