czy php nie jest opcją drukowania tabeli? Jeśli tak, możesz po prostu wyświetlić wiersze tabeli w pętli foreach i to wszystko:
while( $row = mysql_fetch_array( $result ) ) {
$retVal[] = $row;
}
staje się czymś w rodzaju
while( $row = mysql_fetch_array( $result ) ) {
$table_row .= "
<tr>
<td>$row['cust_name']</td>
<td>$row['cust_mobile']</td>
<td>$row['cust_email']</td>
<td>$row['cust_address']</td>
</tr>";
}