Jump to content

[SOLVED] echo 5 images and then a br


only one

Recommended Posts

how can i get it to echo 5 images and then a br

 

i was trying this code:

 

<?php
for ($i=0; $i<1; $i++) 
{
if ($i < 1) 
{
$query = mysql_query("SELECT * FROM `image_gallery` ORDER BY id DESC");
while ($row = mysql_fetch_array($query)) 
{
$i++;
echo "<img src='$row[image_url]' height='100' width='100'>"; 
}
}else{
echo "<br />";
}
?>

 

it didnt seem to work.. anyone got any ideas?

Link to comment
https://forums.phpfreaks.com/topic/50991-solved-echo-5-images-and-then-a-br/
Share on other sites

I think this is what you were trying to do....

 

for ($i=0; $i<=5; $i++) 
{

echo "<br />";

 

However, a more "correct" way of doing it would be:

$query = mysql_query("SELECT * FROM `image_gallery` ORDER BY RAND() LIMIT 5");
     while ($row = mysql_fetch_array($query)) 
     {
          echo "<img src='$row[image_url]' height='100' width='100'>"; 
     }
}

echo "<br />";

 

Hope that helps,

-Kalivos

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.