PHP mysql选择日期范围不起作用

时间:2013-07-13 12:58:15

标签: php mysql date select

我使用此代码从日期范围中获取数据。但它只显示一行作为结果。 mysql“Date”列使用“Date”作为数据类型。 告诉我我做错了什么。

if(isset($_POST['from'])&& isset($_POST['to'])){
    include_once('../connection.php');
    echo $from= $_POST['from'];
      echo $to=$_POST['to'];
      $query_view="SELECT * FROM user_log where Date between '$from' and '$to'";
      $data_view=mysql_query($query_view,$connect);

while($row_view=mysql_fetch_array($data_view)){
    echo"
    <tr><td>".$row_view['User']."</td><td>".$row_view['Date']."</td><td>".$row_view['Time']."</td></tr>";
    }
    }

2 个答案:

答案 0 :(得分:1)

我想你想要:

  echo $to=$_POST['to'];

而不是

  echo $to=$_POST['from'];

答案 1 :(得分:0)

试试这段代码

if(isset($_POST['from'])&& isset($_POST['to']))
{
     include_once('../connection.php');
     echo $from= $_POST['from'];
     echo $to=$_POST['to'];
     $query_view="SELECT * FROM user_log where `Date` between '".$from."' and '".$to."'";
     $data_view=mysql_query($query_view,$connect);