is php geen optie om de tabel af te drukken? Zo ja, dan kun je tabelrijen in de foreach-lus herhalen en dat is het dan:
while( $row = mysql_fetch_array( $result ) ) {
$retVal[] = $row;
}
wordt zoiets als
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>";
}