something like:
print "<table>";
while ( statement )
    {
    $i++;
    if ($i==1) print "<tr>";
    print "<td>";
    your image code;
    print "</td>";
    if ($i==4) 
        {
        print "</tr>";
        unset($i);
        }
    }
if ($i==1) print "<td></td><td></td><td></td></tr>";
if ($i==2) print "<td></td><td></td></tr>";
if ($i==3) print "<td></td></tr>";
print "</table>";

might work better.
hugh
----- Original Message ----- 
From: "Clint Tredway" <[EMAIL PROTECTED]>
To: "PHP" <[EMAIL PROTECTED]>
Sent: Monday, March 10, 2003 11:53 AM
Subject: [PHP] Question


> I have a display of images that every fourth image I want to start a new
> column. In ColdFusion I would use the MOD operator like this:
> 
> if query.recordcount MOD 4 eq 0
> </td>
> <td>
> /if
> 
> I am just having a brain lapse today, can someone help me do this same
> functionality in PHP?
> 
> Thanks!
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to