> > i have a mysql table with approx. 30 entries.
> >
> > I wanna get them(i know how to do that) and list them in a 2-column
table.

For those minimalist-typists among us... :-)

$rowcount = 0;
echo "<TABLE><TR>\n";
while (list($whatever) = mysql_fetch_row($result)){
    echo "<TD>$whatever</TD>\n";
    $rowcount++;
    if ($rowcount % 2 == 0){
        echo "</TR><TR>\n";
    }
}

Change the 2 to other number for more columns.

--
WARNING [EMAIL PROTECTED] address is an endangered species -- Use
[EMAIL PROTECTED]
Wanna help me out?  Like Music?  Buy a CD: http://l-i-e.com/artists.htm
Volunteer a little time: http://chatmusic.com/volunteer.htm



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to