prova così

<?php
$sql = //tua query
echo "<table border = 1>";
echo "<tr><th>Padre1</th><th>Padre2</th><th>Padre3</th></tr>";
while ($result = mysql_fetch_assoc($sql)){
echo "<tr><td>";
echo $result['QUI METTI IL NOME DELLA COLONNA PADRE 1'] . "</td><td>";
echo $result['QUI METTI IL NOME DELLA COLONNA PADRE 2'] . "</td><td>";
echo $result['QUI METTI IL NOME DELLA COLONNA PADRE 3']. "<td></td>";

}
echo "</table>";
?>

Dovrebbe fungere così, prova e dimmi....