Buyers
Looking for a good deal on a bank-owned "REO" Foreclosure property?
Getting a good deal on real estate - be it a foreclosure, short sale, probate/trustee sale, or a good old-fashioned arm's length transaction - is tricky even in a stable market.
In today's market, you need an experienced, dedicated, and professional buyer's agent to help you find the best deals, act on them fast, and negotiate them to make sure you get the very best deals possible.
Silicon REO MLS Listings
include '../portal/includes/dbconnect.php';
$where = " WHERE (mls_status = 'Active' OR mls_status LIKE 'Pending%') and client_code !='' ";
$where = " WHERE stage NOT in ('', 'sale_closed', 'void') and client_code !='' ";
$query = "SELECT * FROM ire_listing" . $where;
$query .= "ORDER BY mls_status ASC, mls_number" ;
$result = MySqlQuery($query);
if (($result)||(mysqli_errno == 0))
{
if (mysqli_num_rows($result)>0)
{ //display the data
while ($row = mysqli_fetch_array( $result ))
include '../portal/includes/buyer_table.php';
}
else { // no rows returned
echo "No data found";
}
}
?>