dqol6556 2017-03-06 10:23
浏览 29
已采纳

如何将SQL查询与PHP脚本相结合

I have this query to count the number of forms that are submitted by a certain user

$sql="SELECT `ID` FROM `kform` WHERE `ID`='$ID'";                               
$result = $conn->query($sql);
$k=0;
if ($result->num_rows > 0) {
   while($row = $result->fetch_assoc()) {                                                                                                 
      $k++;
   }
}

plus I have this php script that is basically check a certain date (which is included in each form) and prints valid if it is within this fiscal year

$endYear = 2017;
while($endYear <= 2025) {
    $end = $endYear.'/06/30';
    $endDate = DateTime::createFromFormat('Y/m/d', $end);
    $initDate = DateTime::createFromFormat('Y/m/d', $end);
    $initDate = $initDate->sub(new DateInterval('P1Y')) -> add(new DateInterval('P1D'));
    $ddb =  $row2['Date'];
    $dateFromDB = DateTime::createFromFormat('Y-m-d', $ddb);
    if ($dateFromDB >= $initDate && $dateFromDB <= $endDate) { 
        echo "valid
";
        echo "\tStartDate->\"".$initDate->format("Y-m-d")."\"
";
        echo "\tEndDate->\"".$endDate->format("Y-m-d")."\"
";
        echo "\tDateFromDatabase->\"".$dateFromDB->format("Y-m-d")."\"
";
    }

    $endYear++;
}

Now what I was trying to do is to combine these two functions together, the idea behind that is to count only the forms that are in this fiscal year, any older forms should not be counted. I tried different ways to combine them but it gave me different errors every time, So is it even possible to do so?

  • 写回答

1条回答 默认 最新

  • doupai8095 2017-03-06 10:33
    关注

    Go on from that:

     function isValidYear($dategiven){
       $endYear=2017;
       while($endYear<=2025) {
         $end = $endYear.'/06/30';
         $endDate = DateTime::createFromFormat('Y/m/d', $end);
         $initDate = DateTime::createFromFormat('Y/m/d', $end);
         $initDate = $initDate->sub(new DateInterval('P1Y'))->add(new DateInterval('P1D'));
         $ddb =  $dategiven;
         $dateFromDB = DateTime::createFromFormat('Y-m-d', $ddb);
         if ($dateFromDB>=$initDate && $dateFromDB<=$endDate) { 
           return true;
         }
         $endYear++;
        }
        return false;
     }
    

    And

    $sql="SELECT `ID` FROM `kform` WHERE `ID`='$ID'";                               
    $result = $conn->query($sql);
    $k=0;
    if ($result->num_rows > 0) {
     while($row = $result->fetch_assoc()) {
       if(isValidYear($row['datefield'])){
          $k++;
       }
    }
    

    Note: Your $sql selects only the ID field. You have to at Date

    $sql="SELECT * FROM `kform` WHERE `ID`='$ID'"; 
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 关于<main>标签页面跳转的问题
  • ¥80 部署运行web自动化项目
  • ¥15 腾讯云如何建立同一个项目中物模型之间的联系
  • ¥30 VMware 云桌面水印如何添加
  • ¥15 用ns3仿真出5G核心网网元
  • ¥15 matlab答疑 关于海上风电的爬坡事件检测
  • ¥88 python部署量化回测异常问题
  • ¥30 酬劳2w元求合作写文章
  • ¥15 在现有系统基础上增加功能
  • ¥15 远程桌面文档内容复制粘贴,格式会变化