Properties For Rent
We Offer a wide range of Apartments, Independent Houses, Lands, etc for your
residential and commercial requirements
include "config.php";
database_connect();
$select = "SELECT property_TID, property_NAME, property_DESCRIPTION, property_IMAGE FROM tblproperties WHERE property_TYPE='For Rent' AND property_cat = 'residential'";
$result = mysql_query($select) or die(mysql_error());
$count =1;
while($row = mysql_fetch_object($result))
{
$TID = $row->property_TID;
?>
echo $row->property_NAME;?>
echo nl2br($row->property_DESCRIPTION);?>
$count++;
}
?>