Selecting records from MySQL table is basic task. I recommend you to read W3schools tutorial on SQL.
What you want here is done with one simple SELECT query:
//Connecting to MySQL and selecting DB
mysql_connect('server', 'user', 'password');
mysql_select_db('database');
//Actual SELECT query
$qh = mysql_query("SELECT * FROM table_name WHERE city='".$_POST['city']."' AND rent='".$_POST['rent']."' AND area='".$_POST['area']."'");
//Getting query results by rows
while($row = mysql_fetch_assoc($qh))
{
//Do something with $row here
}
EDIT:
I used $_POST
variable just for simplicity. Note that you should always check/validate it's content before using it in a query this way. (To prevent SQL injection)