duanliao2310 2019-08-07 07:35 采纳率: 100%
浏览 466

在SQL查询中获取日期

In my code, I have to select the start date and end date for the SQL query to run. I have to obtain the start and end date from a date picker for the value to be display. Below is my code: Any ideas.?

include 'DBController.php';

$db_handle = new DBController();
$start_date = $_GET['start_date'];
$end_date  = $_GET['end_date'];

$productResult = $db_handle->runQuery("SELECT outlets.outletname,outlets.barcode,invoiceissued.invoiceno,invoiceissued.total_amount,invoiceissued.VATAmount,invoiceissued.date_created,outlets.businessregistrationno,outlets.vat 
FROM `invoiceissued` , outlets 
WHERE invoiceissued.outletid = outlets.outletsid and `date_created` 
BETWEEN ('".$start_date."') AND ('".$end_date."')");

<body>
     Start date : <input type="date" id="start_date" name="start_date"/>
                    End date : <input type="date" id="end_date" 
      name="end_date" />   
</body>
  • 写回答

2条回答 默认 最新

  • dongqian7545 2019-08-07 08:06
    关注

    Lets assume:

     $start_date = $_GET['start_date']; // is string - 2018-03-15
     $end_date  = $_GET['end_date']; // is string -2018-03-20
    

    You'll need to do something like :

    $start_date = strtotime($_GET['start_date']);
    $formatedStartDate = date("Y/m/d H:i:s", $start_date);// or whatever format you need
    
    $end_date = strtotime($_GET['end_date']); 
    $formatedEndDate = date("Y/m/d H:i:s", $end_date);// or whatever format you need
    

    1rst you convert strings to timestamps with strtotime() and then you format this timestamps with the date()

    评论

报告相同问题?

悬赏问题

  • ¥15 sqlite 附加(attach database)加密数据库时,返回26是什么原因呢?
  • ¥88 找成都本地经验丰富懂小程序开发的技术大咖
  • ¥15 如何处理复杂数据表格的除法运算
  • ¥15 如何用stc8h1k08的片子做485数据透传的功能?(关键词-串口)
  • ¥15 有兄弟姐妹会用word插图功能制作类似citespace的图片吗?
  • ¥200 uniapp长期运行卡死问题解决
  • ¥15 latex怎么处理论文引理引用参考文献
  • ¥15 请教:如何用postman调用本地虚拟机区块链接上的合约?
  • ¥15 为什么使用javacv转封装rtsp为rtmp时出现如下问题:[h264 @ 000000004faf7500]no frame?
  • ¥15 乘性高斯噪声在深度学习网络中的应用