duandie0921 2016-10-05 06:45
浏览 39
已采纳

如何在php中显示特定日期的记录?

I have to display records for specific date.Below Code i tried.I am getting output "0 Results";

   $startDate=$_POST['startDate'];//date in format(d-m-y)
       $endDate=$_POST['endDate'];//date in format(d-m-y)

     include("../db/connection.php") ;

     $sql ="SELECT *FROM Emp WHERE empDate BETWEEN $startDate AND $endDate";
$result = $conn->query($sql);

 if ($result->num_rows > 0) {
    // output data of each row
    while($row = $result->fetch_assoc()) {
        echo "id: " . $row["Id"]. " - Name: " . $row["First_name"]. " " . $row["Last_name"]. "<br>";
    }
} else {
    echo "0 results";
}
$conn->close();
}

I have records in my database like this

2016-10-03 2:51:35
2016-10-03 2:53:25
2016-10-04 3:52:30
2016-10-04 4:15:55

I founded question on stackoverflow get values from table only for a specific day in mysql but that query is not working for me.Would you help me in this?

  • 写回答

2条回答 默认 最新

  • dongxing4196 2016-10-05 06:49
    关注

    First of all you must need to change Date Format as "Y-M-D" by using strtotime():

    <?php
    $startDate = date("Y-m-d H:i:s",strtotime($_POST['startDate'])); // will return data something like 2016-10-05 00:00:00
    $endDate = date("Y-m-d H:i:s",strtotime($_POST['endDate'])); // will return data something like 2016-10-05 00:00:00
    ?>
    

    Than you need to use single quote around Date value in your SQL Statement:

    $sql ="SELECT * FROM Emp WHERE empDate BETWEEN '$startDate' AND '$endDate'";
    

    According to your question, you have date value as:

    2016-10-03 2:51:35
    2016-10-03 2:53:25
    2016-10-04 3:52:30
    2016-10-04 4:15:55
    

    In your database, so you must need to use DATE in "Y-M-D" format.


    Also note that, your code is open for SQL Injection, you must need to prevent your code with SQL Injection and this reference will help you: How can I prevent SQL injection in PHP?


    Update:

    In your case, if you are not getting H:i:s from $_POST input than you can use like that:

    <?php
    $startDate = date("Y-m-d",strtotime($_POST['startDate']));
    $endDate = date("Y-m-d",strtotime($_POST['endDate']));
    $sql ="SELECT * FROM Emp 
        WHERE empDate 
        BETWEEN '$startDate 00:00:00' AND '$endDate 23:59:59'";
    ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 怎样才能让鼠标沿着线条的中心线轨迹移动
  • ¥60 用visual studio编写程序,利用间接平差求解水准网
  • ¥15 Llama如何调用shell或者Python
  • ¥20 谁能帮我挨个解读这个php语言编的代码什么意思?
  • ¥15 win10权限管理,限制普通用户使用删除功能
  • ¥15 minnio内存占用过大,内存没被回收(Windows环境)
  • ¥65 抖音咸鱼付款链接转码支付宝
  • ¥15 ubuntu22.04上安装ursim-3.15.8.106339遇到的问题
  • ¥15 blast算法(相关搜索:数据库)
  • ¥15 请问有人会紧聚焦相关的matlab知识嘛?