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 lammps拉伸应力应变曲线分析
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛
  • ¥15 请问Lammps做复合材料拉伸模拟,应力应变曲线问题
  • ¥30 python代码,帮调试,帮帮忙吧
  • ¥15 #MATLAB仿真#车辆换道路径规划
  • ¥15 java 操作 elasticsearch 8.1 实现 索引的重建
  • ¥15 数据可视化Python