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
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

Link to comment
Share on other sites

maybe i didnt make myself clear, what i was trying to use that code too do was count to 5, then when it reaches 5 it echos a br and counts another five

 

so it will echo all my images in the database with 5 images per row..

Link to comment
Share on other sites

This should work:

 

$query = mssql_query("SELECT * FROM image_gallery");
$i = 1;
while($r = mysql_fetch_assoc($query)) {
echo '<img src="'.$r['image_url'].'">';
if($i % 5 == 0) {
echo "<br />";
}
$i++;
}

 

thanks that did the job  :D

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.