Hey, thanks for the code! Unfortunately, it didn't work. But I spent about ten minutes debugging and shredding apart the code, and found a fix that works. Here's the correct code that I used, which was adapted from Patrick's:
$link = mysql_pconnect($DB_SERVER, $DB_LOGIN, $DB_PASSWORD);
$result = mysql_db_query($DB,$SQL);
$Total_Records = mysql_num_rows($result);
$NumberOfColumns = 3;
$Records_Per_Column = (int)($Total_Records/$NumberOfColumns);
while ($NumberOfColumns)
{
echo "<TD>";
for ($i = 0; $i < $Records_Per_Column; $i++)
{
$row = mysql_fetch_array($result);
echo $row["name"] . "<BR>";
}
echo "</td>";
$NumberOfColumns--;
}
Of course, substitute the values for your variables in the code above (SQL sever, password, query, etc etc.)
Thanks again, Patrick! =)