pretty simple really. If you're more of a html coder than a php coder, then skip out of php and back into html for various sections.
So perform your query:
<?PHP
$result = mysql_query($sqlquery);
?>
<table>
<?PHP
while($row = mysql_fetch_array($result)){
$row_name = $row['name'];
?>
<tr>
<td><?PHP echo "$row_name"; ?></td>
</tr>
<?PHP
};
?>
</table>
So effectively you start your table before commencing the loop, then just get the loop to write all the tags for your rows and cells, then terminate your loop and subsequently your table.
The above should create a table 1 column wide by X rows with each name entered into a seperate row.
I don't profess to be any kind of expert, I mean I've only actually been coding PHP from scratch for about 8 months and we all have to start somewhere!
I found the link to the hotwired tutorial gave me enough to get me going but then went and purchased a book (The PHP4 Bible) which has been a tremendous help. Don't give up! Similarly, I took a long hard look at many many scripts I downloaded from places like hotscripts etc, and after disecting them, began to get a feel for the necessary structure.