PHP

Moderators: None (Apply to moderate this forum)
Number of threads: 1847
Number of posts: 5013

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
Re: Display records 3 items in a row and move to next row. Posted by Gabe on 31 May 2008 at 8:32 AM
For example:
<?php
$query = "Select * from products";
$result = $db_mysql->query($sql);
$i = 0;
while ($row = mysql_fetch_row($result)) {
  if ($i % 3 == 0)
    echo "<tr>";
  echo "<td>".$row["id"]."</td>";
  $i++;    
}
?>
Thread Tree



 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.