není php možnost vytisknout tabulku? Pokud ano, můžete jen opakovat řádky tabulky ve smyčce foreach a je to:
while( $row = mysql_fetch_array( $result ) ) {
$retVal[] = $row;
}
stane něco jako
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>";
}