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

Php 简单表单不会从电子邮件重定向到给定操作,php,email,Php,Email,我想要达到的目标: 我有一个简单的html表单,我通过phpmailer发送了该表单,电子邮件成功发送。但问题是,当我点击电子邮件中的提交按钮时,表单不会重定向到任何地方,也不会显示任何警报等 表格为: <table align='center' width='630' border='0' cellspacing='0' cellpadding='4' style="border-collapse:collapse;"> <form action='http://ww

我想要达到的目标:

我有一个简单的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>

您正在寻找的产品:
详细描述您的购买要求:

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

试着将表单标签放在表格标签周围,看看是否有帮助

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

...

希望这会有所帮助

我认为一些电子邮件客户端不允许通过电子邮件提交表单。您的代码在网页上应该可以正常工作。非常感谢它可以正常工作,事实上我不知道:)