Professional Web Development Forums: PHP loop through database and limit number of entries

Jump to content

PHP loop through database and limit number of entries Bookmark

User is offline gilbertsavier 

  • Member
  • Group: Members
  • Posts: 18
  • Joined: 26-June 09
  • Current Mood: Current Mood: None Chosen

Find Posts Tutorial info

  • Added on: 12 August 2009 - 09:07 AM
  • Views: 2,211
Hi,
Going to try to explain this as best I can. I have a bunch of stuff in a database and I need to display this info within a table. This isn't a problem at all but, I need it to only display 3 td tags per line and then move on to the row.

so i need it to do :

code:













My First Row My First Row 2 My First Row 3
My Second Row My Second Row 2 My Second Row 3




and continue to do this through every entry in the database table.

so I have something like this that will display the info:

code:

for ($i = 1; $i <= $num; $i++){

$chairArray = mysql_fetch_array($chairResult);
$chairName = $chairArray['name'];
$chairDescription = $chairArray['description'];
$chairImage = $chairArray['image'];

echo "";
echo "";
echo "";
echo "
";
echo $chairName;
echo "";
echo "";


}
0

Share:

Powered by (IM) Tutorials 1.1.0 © 2010, by Michael McCune

Enter your sign in name and password


Sign in options
  Or sign in with these services