PHP本地服务器表单提交工作正常。在实时服务器不工作

时间:2017-06-29 11:33:04

标签: php

查询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>        `

0 个答案:

没有答案