Coding Help

Meap

Don't need glasses if you C#
Nov 7, 2010
1,045
296
When I have more than 4 images, the images go off the screen like this
0zHTJ1F.png
How would I do it so after the first 4 images, it starts the new line of images instead of using my code to make a new page after every 4 images? My code is below
PHP:
<div id="box" class="big">

                    <div id="body">
                        <br>
   
                      <img src="http://i.imgur.com/E6KzqzT.gif" title="source: imgur.com" />
       
                  <br>
                  <br>
                      </div>
                      <table width="900" border="0" cellspacing="1" cellpadding="0">
                       
<tbody>
    <tr>
<?php
                $page = (empty($_GET['page'])) ? 1 : $_GET['page'];
                $start_from = ($page-1) * 5;
               
                $getItems = dbquery("SELECT * FROM `values` ORDER BY rare_name DESC LIMIT $start_from, 5");
                $image_dir = "http://198.50.211.213/images";
                $evenOdd = '#ffffff';

while ($item = mysql_fetch_assoc($getItems))
{

    if ($evenOdd == '#ffffff')
    {
        $evenOdd = '#f5f5f5';
    }
    else
    {
        $evenOdd = '#ffffff';
    }
   
    echo('<td>
                <a class="hideDisplay">
            <div class="bordequi" height:145px;">
                <br>
                <br>
                <br>
                <center><img src="' . $image_dir . "/rare/" . clean($item['image']) . '.gif"></center>
                <br>
                <span class="showDisplayOnHover">
                    <b>' . clean($item['rare_name']) . '</b> <br>
                <span class="showBodyOfDisplayOnHover">
                    Price: <b>' . clean($item['price_credits']) . '</b> Credits<br>
                    Status: <img src="' . $image_dir . "/" . clean($item['up_down']) . '.png">
                </span>
                </span>
            </a>
        </td>');
   
    }
                ?>
</tbody>
</table>
<center>Pages: <?php
$sql = "SELECT COUNT(image) FROM `values`";
$rs_result = dbquery($sql);
$row = mysql_fetch_row($rs_result); 
$total_records = $row[0];
$total_pages = ceil($total_records / 4);
 
for ($i=1; $i<=$total_pages; $i++) {
    echo "<font size='2'><a href='values.php?page=".$i."'>".$i.", </a> </font>";
};
?></center>

    </body>
</html>
 

JayC

Always Learning
Aug 8, 2013
5,493
1,398
Usually for things you are just trying to display, while for loops are good, for this situation While Loop would work better. And if you want to control your loop to only display a certain number you can always just add "Do .. While .." otherwise all you need is "While.."

So do thing along the lines of this:
do{
$i++;
echo "<font size='2'><a href='values.php?page=".$i."'>".$i.", </a> </font>";";
}
while($i <10);
 

Meap

Don't need glasses if you C#
Nov 7, 2010
1,045
296
I want it to display unlimited amounts but after every 4 images it will start a new row so the image doesnt go off the screen
 

j0sh

Will someone please explain the meaning of life?
Apr 27, 2012
167
25
not too good with css, but try removing the " height:145px;" from "<div class="bordequi" "height:145px;">"
 

j0sh

Will someone please explain the meaning of life?
Apr 27, 2012
167
25
Please never reply to this thread again. Your advice was so utterly wrong and stupid you make me want to de-activate my devbest account.
I'm actually sick of the hateful devbest community haha, i replied to most of these whil drunk asf. RZ has a far better community.
 

Users who are viewing this thread

Top