5

JSON-events.php我有一个带有作为action( )运行的提交按钮的 php 表单(要遵循的代码method = POST)。在 JSON 事件代码中,我正在测试表单是否已使用if (!empty($_POST)). 我的问题是 JSON 事件代码似乎无法识别$_POST

这是表单侧代码部分。

<div class="simple_overlay" id="searchform">
<form id="myform" class = "cols" action="json-events.php" method="post" >

    <h3>Search</h3>

    <p>
      <label>address/postcode *</label>
      <input type="address" id="searchaddress" />
    </p>
    <p>
    <label for="amount">maximum distance:</label>
    <input type="text" id="amount" value="5 miles" style=" border:0; color:#43a8c4; font-weight:bold;" />
    </p>

    <div id="slider-range-min" style="width:130px; margin-left:4px; margin-bottom:20px"></div>

    <p id="terms">
      <label>Category 1</label>
      <input name="cat1" type="checkbox" value="1" checked="checked"/>
    </p>
    <p id="terms">
      <label>Category 2</label>
      <input name="cat2" type="checkbox" value="1" checked="checked"/>
    </p>
      <p id="terms">
      <label>Category 3</label>
      <input name="cat3" type="checkbox" value="1" checked="checked"/>
    </p>
      <p id="terms">
      <label>Category 4</label>
      <input name="cat4" type="checkbox" value="1" checked="checked"/>
    </p>
      <p id="terms">
      <label>Category 5</label>
      <input  name="cat5" type="checkbox" value="1" checked="checked"/>
    </p>
      <p id="terms">
      <label>Category 6</label>
      <input name="cat6" type="checkbox" value="1" checked="checked"/>
    </p>
      <p id="terms">
      <label>Category 7</label>
      <input name="cat7" type="checkbox" value="1" checked="checked"/>
    </p>
      <p id="terms">
      <label>Category 8</label>
      <input  name="cat8" type="checkbox" value="1" checked="checked"/>
    </p>
      <p id="terms">
      <label>Category 9</label>
      <input name="cat9" type="checkbox" value="1" checked="checked"/>
    </p>
      <p id="terms">
      <label>Category 10</label>
      <input name="cat10" type="checkbox" value="1" checked="checked"/>
    </p>
    <p>
      <input type="hidden" name="searchlat" id="searchlat"/>
    </p>
    <p>
      <input type="hidden" name="searchlong" id="searchlong" />
    </p>

    <input type="submit" name="search" id="search"/>
    <input type="button" value="Check Address" onclick="codeAddressSearch()"/>
    <button type="reset">Reset</button>

</form>
</div>

这是JSON的顶部......

if (!empty($_POST)) {

非常感谢任何帮助

4

6 回答 6

9

empty()如果$_POST没有任何值(空数组)将起作用,但是在您提交没有任何值的情况下,您仍然会得到一个如下所示的数组并且它不是空的:

    大批
    (
        [搜索] =>
        [搜索长] =>
        [搜索] => 提交查询
    )

empty()$_POST仅当返回时才会返回 true

Array (

)

但这不会发生,因为每个表单都会有一个Sumbit按钮。

只需使用

if($_POST) {
//php code
}

它会解决你的问题。

通过访问http://php.net/manual/en/function.empty.php了解更多关于 empty()

于 2012-09-21T11:21:49.393 回答
7

不使用

if (!empty($_POST)) {

检查是否有一个帖子完成使用这个:

if( $_SERVER['REQUEST_METHOD'] == 'POST') {
于 2012-09-21T10:14:45.890 回答
1

可以与 $_POST 一起使用的条件

if(count($_POST)>0){
    //...
}
if(isset($_POST['field_name'])){
    //...
}
if( $_SERVER['REQUEST_METHOD'] == 'POST') {
    //..
}
于 2012-09-21T11:39:24.200 回答
0

试试这个

  if(!empty($_POST['search']) && isset($_POST['search']))
于 2012-09-21T10:14:21.807 回答
0

检查 $_POST 数组中的实际值要好得多。例如。

if (!empty($_POST['search']))
于 2012-09-21T10:15:11.480 回答
0

如果发布值 0,则使用 empty() 将失败所以最好使用
isset($_POST['FIELD_NAME'])

于 2012-09-21T10:57:15.497 回答