To see all in the table use something like;
$result = mysql_query("SELECT name,address,username,password FROM tablename", $connection);
while (list($name,$address,$username,$password) = mysql_fetch_row($result)) {
echo " <tr>\n" .
" <td>$name</a></td>\n" .
" <td>$address</td>\n" .
" <td>$username</td>\n" .
" <td>$password</td>\n" .
" </tr>\n";
}
If you have one or 100 rows of data that will present them in a table with a new row for each entry in the table.