我想要达到的目标:
我有一个简单的 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>
无法理解问题出在哪里,这是我第一次将完整的表格发送到电子邮件并重定向它..