Jump to content

Recommended Posts

I have a do while statement that I want to display 4 adverts in a 2x2 grid

How do I display the first 2 advert on the first then then the next 2 in another row.

 

I have this code so far but are stuck now/

<?php
do
{
$Advert = $row_Adverts['Link'];
echo "<img src=\"$Advert\">"." ";
}
while ($row_Adverts = mysql_fetch_assoc($Adverts));
?>

 

Many thanks

VoodooJai

Link to comment
https://forums.phpfreaks.com/topic/119960-solved-do-while-statement-to-give-rows/
Share on other sites

You need a counter to see how many you've already displayed:

<?php
$i = 0;
while ($row_Adverts = mysql_fetch_assoc($Adverts)) {
      echo '<img src="' . $row_Adverts['Link'] .'"> ';
      $i++;
      if ($i == 2) echo '<br>';
}
?>

 

This is one way of doing it (untested).

 

Ken

You need a counter to see how many you've already displayed:

<?php
$i = 0;
while ($row_Adverts = mysql_fetch_assoc($Adverts)) {
      echo '<img src="' . $row_Adverts['Link'] .'"> ';
      $i++;
      if ($i == 2) echo '<br>';
}
?>

 

This is one way of doing it (untested).

 

Ken

 

I think this is what works, does it look right!!!!!

 

<?php
$rows = 0; 
do
{ 
  $Advert = $row_Adverts['Link'];
  echo "<img src=\"$Advert\">"." ";
  $rowS++;
  if ($rowS == 2) echo "<br/>";
  }
while ($row_Adverts = mysql_fetch_assoc($Adverts));
?>

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.