情况是要做一个页面,输出数据库的销售记录,卖出3件以上的显示绿色,3件以下白色。
这个功能已经实现了,代码:
<?php$conn = mysql_connect('127.0.0.1:8889', 'root', 'root');mysql_select_db('chanping', $conn);$sql="select * from xiaoshou";$r = mysql_query($sql);?> <?php while($rs = mysql_fetch_assoc($r)) { if($rs["count"] >= "3") { echo ("<tr bgcolor=green>"); }else{ echo ("<tr bgcolor=white>"); }?> <tr> <td><?php echo $rs["xinghao"];?></td><td><?php echo $rs["count"];?></td> </tr> <?php } echo ("</table>");?>
这个是每条记录为一行,垂直显示的。
在这个基础上,希望HTML页面以每3段完整记录(型号和count)为一行历遍下去,网上找了段代码如下:
<?php $a = array (1,2,3,4,5,6,7,8,9,10,11); $i = 0; ?> <table border=1> <tr> <? foreach ($a as $k){ if($i%3==0) {//该处表示需要横向排列的列数. echo "</tr><tr>"; } echo "<td>",$k,"</td>";//该处显示该列的数据. $i ++; } ?>
这两段代码怎么结合起来啊?
能让网页按如下显示
xinghao1 count xinghao2 count xinghao3 count
xinghao4 count xinghao5 count xinghao6 count
xinghao7 count xinghao8 count xinghao9 count
试了很多都不成功 ,求大神帮助!不胜感激!
回复讨论(解决方案)
<?php$conn = mysql_connect('127.0.0.1:8889', 'root', 'root');mysql_select_db('chanping', $conn);$sql="select * from xiaoshou";$r = mysql_query($sql);?><table><?php$index = 1;while($rs = mysql_fetch_assoc($r)){ if($index%3==1) echo('<tr>'); if($rs["count"] >= "3") { echo ("<td bgcolor=green>"); }else{ echo ("<td bgcolor=white>"); }?> <?php echo $rs["xinghao"];?></td><td><?php echo $rs["count"];?></td><?php if($index%3==0) echo('</tr>'); $index++;}--$indexif($index%3!=0) echo('</tr>');?></table>
代码没试过,思路应该是这样
那每行颜色不用区分了?
那每行颜色不用区分了?
哥 上次帮助真是太感谢了 !还是要区分的 我就是不明白为什么把数据库表的列放入数据里为什么运行不出来? 麻烦再帮我看下!谢谢
<?php$conn = mysql_connect('127.0.0.1:8889', 'root', 'root');mysql_select_db('chanping', $conn);$sql="select * from xiaoshou";$r = mysql_query($sql);?> <?phpecho "<table>"; $k=1; while($rs = mysql_fetch_assoc($r)) { $color=$rs["count"] >= "3"?"green":"white"; echo $k%3==1?"<tr>":"";?> <td bgcolor="<?php echo $color;?>"><?php echo $rs["xinghao"];?></td> <td bgcolor="<?php echo $color;?>"><?php echo $rs["count"];?></td> <?php echo $k%3==0?"</tr>":""; $k++; }echo "</table>";?>

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-

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

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

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

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

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


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

Dreamweaver Mac version
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

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.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
