Forum Moderators: coopster
<table>
<tr>
<td>Result 1</td>
<td>Result 2</td>
<tr>
<tr>
<td>Result 3</td>
<td>Result 4</td>
<tr>
...etc
i am currently using a while statement which prints out one column of results
while ($row= mysql_fetch_array($result))
{
$name = $row["name"];
$url = $row["url"];
echo "<table width=\"300\"><tr>\n";
echo "<td><b><a href=\"".$url."\">".$name."</a></b></td>\n";
echo "</tr></table>";
}
and i haven't a clue about how to format these into two columns? ;-)
thankful for any suggestions!