I dont want to sound offensive, but do you really have years of html-scripting experience?
I mean, thats quite poor scripting you have there.
I dont know what do you mean by telling the script to use columns because its just basic html.
Ok, heres a table for you with 3 rows(you only got Name, Desc and Address) and 4 columns.
print "<table width=400 border=0 cellspacing=5 cellpadding=5>
<tr>
<td align=left><font face=arial size=-6 color=red>Name</font></td>
<td</td>
<td></td>
<td>".$row["name"]."</td>
</tr>
<tr>
<td align=left><font face=arial size=-6 color=red>Description</font></td>
<td></td>
<td></td>
<td>".$row["descript"]."</td>
</tr>
<tr>
<td align=left><font face=arial size=-6 color=red>Address</font></td>
<td></td>
<td></td>
<td>".$row["street"]."</td>
</tr>
</table>";
?>
BTW, you dont have to use so many <td>:s to make it look what you like. Just use width and make one column the size you want.
(So in this case you propably dont need 4 columns at all, just make one <td width='whateverulike'></td> between the cells to make space. Or change the first columns width for your needs and then you need only 2 columns.)