本文实例讲述了php动态柱状图实现方法。分享给大家供大家参考。具体分析如下:
1.需求
查询最近一个月的数据总条数和审核通过的条数,做成柱状图
2.实现代码:
<!doctype html> <?php //计算上一个月的今天 function last_month_today90后的歌曲($time){ $last_month_time = mktime(date("g", $time), date("i", $time),date("s", $time), date("n", $time), 0, date("y",$time)); $last_month_t = date("t", $last_month_time); if ($last_month_t < date("j", $time)) { return date("y-m-t h:i:s", $last_month_time); } return date(date("y-m", $last_month_time) . "-d", $time); } ?> <?php include dirname(dirname(dirname(__file__))).'/config.php'; $enddate = date('y-m-d'); $date = strtotime($enddate); $begindate= last_month_today($date); //查询最近一个月的总的数据条数 $sql = 'lect count(*) from newpro where p_date>\''.$begindate.'\' and p_date<\''.$enddate.'\''; //$sql = "lect count(*) from newpro where p_date>'$begindate' and p_date <'$enddate'";//这条语句也可以 $d = db()->query($sql)->fetch(pdo::fetch_num); //echo "总的数据条数:".$d[0]; //查询审核通过的数据条数 $sql2=$sql.' and is_pa_check_first=1 and is_pa_check_cond=1 and is_pa_check_third=1'; $d2 = db()->query($sql2)->fetch(pdo::fetch_num); //echo "审核通过的数据条数:".$d2[0]; //查询一次审核通过的条数 $sql3=$sql.' and is_pa_check_first=1'; $d3 = db()->query($sql3)->fetch(pdo::fetch_num); //查询二次审核通过的条数 $sql4=$sql.' and is_pa_check_first=1 and is_pa_check_cond=1'; $d4 = db()->query($sql4)->fetch(pdo::fetch_num); ?> <html> <head> <meta chart="utf-8"/> <style> table{ cellpadding:0px; cellspacing:0px; } p{ padding:0px; margin:0px; } div{ background-color:#669900; width:50px; } #div1{ height:200px; } </style> <script type="text/javascript" src="../../../j保障性住房s/jquery-1.7.2.min.js"></script> </head> <body> <table border="0" > <tr align="center" valign="bottom"> <td> <p><?php echo $d[0]?></p> <div id="div1"></div> </td> <td > <p><?php echo $d3[0]?></p> <div style="height:<?php $str=floor(($d3[0]/$d[0])*200); echo $str.'px'?>"></div> </td> <td > <p><?php echo $d4[0]?></p> <div style="height:<?php $str=floor(($d4[0]/$d[0])*200); echo $str.'px'?>"></div> </td> <td > <p><?php echo $d2[0]?></p> <div style="height:<猜网?php $str=floor(($d2[0]/$d[0])*200); echo $str.'px'?>土耳其签证官网"></div> </td> </tr> <tr align="center" valign="top"> <td><p>总计</p></td> <td><p>一审通过</p></td> <td><p>二审通过</p></td> <td><p>审核通过</p></td> </tr> </table> </body&大泽山gt; </html>
3.效果图如下所示:
希望本文所述对大家的php程序设计有所帮助。
本文发布于:2023-04-06 19:21:52,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/2592a79d1bcf79c07ce6572d5f173bb7.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:PHP动态柱状图实现方法.doc
本文 PDF 下载地址:PHP动态柱状图实现方法.pdf
留言与评论(共有 0 条评论) |