查询1。
表格在当地提交工作正常,但不在现场工作。我删除了操作并放了#并且我也没有调用任何脚本进行重定向,但是当点击提交按钮时它会自动重定向到同一页面。我不知道它是如何重定向的?
查询2。
在行动中我提到了<?php echo $_SERVER['PHP_SELF']; ?>
并且还提供了直接网址。如果我打印帖子值,它就不会来POST。
两种方式都显示错误
此页面无效 www.XXXXXXXXXXX.com没有发送任何数据。
下面我粘贴我的短代码
<?php
ob_start();
session_start();
$_SESSION['captcha'] = rand(1000,9999);
include("./config/dbconnect.php");
include("./functions/functions.php");
if($_POST){
print_r($_POST); exit;
}
?>
<table border="0" width="100%"><tr><td style="padding-left:25px">
<form name="register" method="post" action="#" enctype="multipart/form-data">
<table width="634" border="0">
<tr>
<td colspan="3" class="sub_heading"><div align="right"><span class="style_r">* Mandatory Fields</span></div></td>
</tr>
<tr>
<td height="24" colspan="3"><div align="left" class="sub_heading">Login Information</div></td>
</tr>
<tr>
<td width="178">Email<span class="style_r">*</span></td>
<td width="10">:</td>
<td width="432"><input type="text" name="email" width="14" maxlength="50" /></td>
</tr> ******************* etc <tr>
<td colspan="3"><input type="checkbox" name="terms" />
I have read, understood and agree to the <a href="terms.php" class="job_links" target="_blank">Terms and Conditions</a> of eGulfCareers.com</td>
</tr>
<tr>
<td width="178"></td>
<td width="10"></td>
<td width="432"><input type="hidden" name="register" value="1" />
<input type="submit" name="submit" value="Signup" class="submit_button" /></td>
</tr>
</table>
</form></td>
</tr>
</table> `