php 每周数据
自已写了一段PHP,发现只能读取当今天的数据,前几天的没显示出来,高手看看应怎改。
<?php@header("content-Type: text/html; charset=utf-8");require_once 'inc/site_config.php';require_once 'inc/db_connections.php';require_once 'inc/function.php';mysql_query('set character set "utf8"');?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>无标题文档</title></head><script type="text/javascript" src="http://www.hkjinku.com/statics/js/jquery.js"></script><!--导航JS--><script type="text/javascript" src="http://www.hkjinku.com/statics/js/function.js"></script><!--导航JS--><script type="text/javascript" src="http://www.hkjinku.com/statics/js/home.js"></script><!--选项卡--><style type="text/css"><!--@font-face { font-family:"微软雅黑"; src:url("微软雅黑.ttf");} *{margin:0px auto;padding:0px; }body { color: #666666; font-size: 12px;}a:link,a:visited,a:hover,a:active{color: #666666;text-decoration: none; font-size:12px;}/*全球经济数据*/#qqjjsj{float:left; overflow:hidden; width:580px; margin-bottom:10px;}#qqjjsj_title{ height:30px; background:url(http://www.hkjinku.com/statics/2013/element.gif) 0 -109px repeat-x; margin:0 6px;}#qqjjsj_title li{ float:left; width:110px; height:30px; line-height: 34px; font-weight:bold; font-size:14px; display:inline; cursor:pointer; text-align:center;}#qqjjsj_title li.active{ background-image:url(http://www.hkjinku.com/statics/2013/element.gif); background-position:-2px -60px; background-repeat:no-repeat; color:#FFF;}#qqjjsj_title li.unactive{ background-image:url(http://www.hkjinku.com/statics/2013/element.gif); background-position:0 -109px; background-repeat:repeat-x; color:#CCC;}#qqjjsj_content{ float:left; width:570px; border:#381610 5px solid; overflow:hidden;}.tab-hd{ height:30px;}.tab-bd{ height:150px; overflow:hidden;}.tab-bd .scrollFlow{ height:300px; overflow:hidden;}.tab-bd .item{ height:150px; display:block; }.tab-dl dl{ width:100%; height:30px; cursor:pointer;}.tab-dl dl.wi-hd dt,.tab-dl dl.wi-hd dd{ background:url(http://www.hkjinku.com/statics/2013/element.gif) 0 -155px repeat-x; color:#381610;}.tab-dl dl.wi-item:hover dt,.tab-dl dl.wi-item:hover dd{ background:#e5bd78; color:#FFF;}.tab-dl dt,.tab-dl dd{ height:24px; line-height:24px; text-align:center; float:left; display:inline;border:1px solid #CCC;box-shadow:1px 1px 1px #c2c2c2; margin:2px; color:#888888; font-weight:700; font-size:14px; overflow:hidden; }.tab-dl dt{ width:258px;}.tab-dl dd.i1{ width:70px;}.tab-dl dd.i2{ width:70px;}.tab-dl dd.i3{ width:60px;}.tab-dl dd.i4{ width:80px;}.qqjjsj_url{ margin:7px 10px;}--></style><body><!--全球经济数据--> <div id="qqjjsj"> <div id="qqjjsj_title"> <ul> <?php $j = 0; for( $i = 0; $i <7; $i++ ){ //循环输出7天日期 if( (date('N',strtotime('-'.$i.' day'))) < 6 ){ //排除星期六天 echo '<li class="'.(( $j == 0 )?"active":"unactive").'" id="qqjjsj'.$j.'" onmouseover="javascript:Show(\''.$j.'\',\'5\',\'qqjjsj\',\'active\',\'unactive\')">'.(date('n月d日',strtotime('-'.$i.' day'))).'</li>'; $j++; } } ?> </ul> </div> <div id="qqjjsj_content"> <?php $j = 0; for( $i = 0; $i <7; $i++ ){ //循环输出7天内数据 if( (date('N',strtotime('-'.$i.' day'))) < 6 ){ //排除星期六天 $cur_time = mktime(0, 0, 0, date("m") , (date("d")-$i), date("Y")); //当天时间戳 $next_time = mktime(0, 0, 0, date("m") , (date("d")+1-$i), date("Y")); //第二天时间戳 $where = "`AccTime` >= '$cur_time' AND `AccTime` < '$next_time'"; echo '<div style="display: '.(( $j == 0 )?"block":"none").';" id="qqjjsj'.$j.'_nr">'; ?> <div class="tab-dl tab-hd"> <dl class="wi-hd"> <dt>事件</dt> <dd class="i1">前值</dd> <dd class="i2">预期值</dd> <dd class="i3">时间</dd> <dd class="i4">日期</dd> </dl> </div> <div class="tab-dl tab-bd scrollBox<?php echo $j?>"> <div class="scrollFlow"> <div id="scroll_a<?php echo $j?>" class="item"> <?php $s_arr=array(); $i=0; $service_rs=mysql_query("select * from info where CateId='8' and $where order by InfoId desc limit 10"); while($service_row=mysql_fetch_assoc($service_rs)) { $s_arr[$i++]=$service_row; } for($i=0;$i<10;$i++) { ?> <dl class="wi-item"> <dt><a href="info_detail.php?InfoId=<?=$s_arr[$i]['InfoId']?>" target="_blank"><?=$s_arr[$i]['Title']?></a></dt> <dd class="i1"><?=$s_arr[$i]['qz']?></dd> <dd class="i2"><?=$s_arr[$i]['yqz']?></dd> <dd class="i3"><?=$s_arr[$i]['time']?></dd> <dd class="i4"><?=$s_arr[$i]['AccTime']?></dd> </dl> <?php } ?> </div> <div id="scroll_b<?php echo $j?>" class="item"></div> </div> <script type="text/javascript">scrolltop("#scroll_a<?php echo $j?>","#scroll_b<?php echo $j?>",".scrollBox<?php echo $j?>");</script> </div> <?php echo '</div>'; $j++; } } ?> <div class="qqjjsj_url"><a href="news.php?CateId=8" target="_blank"><img src="/static/imghwm/default1.png" data-src="http://www.hkjinku.com/statics/2013/qqjjsj.jpg" class="lazy" / alt="php写每周数据问题代码" ></a></div> </div> </div></body></html>
回复讨论(解决方案)
第101行 的 for( $i = 0; $i 内嵌第130行的 for($i=0;$i
你觉得合理吗?
原来是那里问题,把130行的改成I1解决了。。

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version
Useful JavaScript development tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.
