Jump to content

problem with loop....


nathanmaxsonadil

Recommended Posts

my loop is still causing problems...

it supposed to find the half mark and then put half on one side and half on the other but it just puts 1 on one side and 3 on the other.

here's my code.

$sql1 = mysql_query('SELECT * FROM table') or die('Could not connect: ' . mysql_error());
$numrows = mysql_num_rows($sql1);
$numrows = $numrows / 2;
$numrows = round($numrows);
echo '<div id="div1">';
$i = 0;
while ($row = mysql_fetch_assoc($sql1)) {
$i++;
if($i == $numrows){
echo"</div>
<div id='div2'><br/><a href='{$row['href']}'>
<img style='border:0;' src='siteimg/{$row['img']}' alt='{$row['alt']}'/>
{$row['url']}
</a>";
}else if($i == 1){
echo "<br/><a href='{$row['href']}'>
<img style='border:0;' src='siteimg/{$row['img']}' alt='{$row['alt']}'/>
{$row['url']}
</a>";
}else {
echo "<br/><br/><a href='{$row['href']}'>
<img style='border:0;' src='siteimg/{$row['img']}' alt='{$row['alt']}'/>
{$row['url']}
</a>";
}
}
echo'</div>';

so it should do something like

<div id='1'>
<br/><a href='site1.php'>
<img style='border:0;' src='siteimg/site1.jpg' alt='site1'/>
site1.com
</a></div>
<br/><br/><a href='site2.php'>
<img style='border:0;' src='siteimg/site2.jpg' alt='site2'/>
site2.com
</a><div id='div2'><br/><a href='site3.php'>
<img style='border:0;' src='siteimg/site3.jpg' alt='site3'/>
site3.com
</a><br/><br/><a href='site4.php'>
<img style='border:0;' src='siteimg/site4.jpg' alt='site4'/>
site4.com
</a></div>

 

however it does something like this

<div id='1'>
<br/><a href='site1.php'>
<img style='border:0;' src='siteimg/site1.jpg' alt='site1'/>
site1.com
</a></div>
<div id='div2'><br/><a href='site2.php'>
<img style='border:0;' src='siteimg/site2.jpg' alt='site2'/>
site2.com
</a><br/><br/><a href='site3.php'>
<img style='border:0;' src='siteimg/site3.jpg' alt='site3'/>
site3.com
</a><br/><br/><a href='site4.php'>
<img style='border:0;' src='siteimg/site4.jpg' alt='site4'/>
site4.com
</a></div>

what is wrong with my loop

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.