You may have to adjust it a bit, but this is, from the top of my head, the idea :
<First connect to your database>
$sql_query = "select * from hosting" ;
//Set the query
$ResultArray = mysql_query($sql_query) ;
//Perform the query
$Content = "<table><tr>";
// initiate var with content and add table commands
while ($row =@ mysql_fetch_array($ResultArray))
{
$Content .= "<td>$row[field1]</td><td>$row[field2]</td>";
}
// As long as the resultarray has info, parse it into row. Then get each field from the array row, and paste it into a new variable
$Content .= "</tr></table>";
// finalize the table
echo $Content ;
// print the table
Jelle.