I updated my code.
$realtCust = $db->prepare("SELECT
rid
, rEmail
,id
, eMail
FROM realtors r
LEFT JOIN
customers c
ON pow(clatitude-rlatitude, 2) + pow(clongitude-rlongitude, 2) < pow(100/110.25, 2)
ORDER BY rid, id");
$realtCust->execute();
$realtCust->rowCount();
$realtCust_row = $realtCust->fetch(PDO::FETCH_ASSOC);
$rcArray = array(
[$realtCust_row['rid'],$realtCust_row['rEmail']],
[$realtCust_row['id'],$realtCust_row['eMail']],
);
$rcArray = array(
[$realtCust_row['rid'],$realtCust_row['rEmail']],
[$realtCust_row['id'],$realtCust_row['eMail']],
);
foreach( $rcArray as list( ,$rcEmail)) {
//echo "$a\n";
echo $rcEmail;
}