<? header('Content-type: text/xml'); ?>

<rss version="2.0">
<channel>
<title>Hartaemas Real Estate Malaysia</title>
<description>Latest residential and commercial properties offers!</description>
<link>http://www.hartamas.com/</link>
<copyright>HARTAMAS.COM, 2007</copyright>

<?
//Commercial Properties
require("db.php");
$sql="select * from items a, tblmaincategory b 
	  where b.intID = '319' and a.isApprove = 1 and a.isExpiry = 0 and a.isNew = 1 and a.mainCategory = b.intID 
	  order by a.ID DESC,PropertyName ASC limit 0,5";
$results=mysql_query($sql);

if($results)
while($r=mysql_fetch_array($results)){
?>
     <item>
        <title> 
			<?=htmlentities(strip_tags($r['PropertyName'])); ?> - 
			<?=htmlentities(strip_tags($r['LocationTamanName'])); ?>, 
			<?=htmlentities(strip_tags($r['LocationCity'])); ?>
		</title>
        <description> 
			<?=htmlentities(strip_tags($r['field01'],'ENT_QUOTES'));?>
			<?=htmlentities(strip_tags($r['field02'],'ENT_QUOTES'));?>
			<?=htmlentities(strip_tags($r['field03'],'ENT_QUOTES'));?>
			<?=htmlentities(strip_tags($r['field04'],'ENT_QUOTES'));?>
			<?=htmlentities(strip_tags($r['field05'],'ENT_QUOTES'));?>
			<?=htmlentities(strip_tags($r['field06'],'ENT_QUOTES'));?>
			<?=htmlentities(strip_tags($r['field07'],'ENT_QUOTES'));?> Contact: 
			<?=htmlentities(strip_tags($r['AgentName'],'ENT_QUOTES'));?>
			<?=htmlentities(strip_tags($r['AgentContact'],'ENT_QUOTES'));?>
		</description>
        <link>http://www.hartamas.com/property_details.php?UID=<?=$r['UID'];?></link>
		<guid>http://www.hartamas.com/property_details.php?UID=<?=$r['UID'];?></guid>
     </item>  
<? } ?>  


<?
//Residential Properties
require("db.php");
$sql="select * from items a, tblmaincategory b 
	  where b.intID = '320' and a.isApprove = 1 and a.isExpiry = 0 and a.isNew = 1 and a.mainCategory = b.intID 
	  order by a.ID DESC,PropertyName ASC limit 0,5";
$results=mysql_query($sql);

if($results)
while($r=mysql_fetch_array($results)){
?>
     <item>
        <title> 
			<?=htmlentities(strip_tags($r['PropertyName'])); ?> - 
			<?=htmlentities(strip_tags($r['LocationTamanName'])); ?>, 
			<?=htmlentities(strip_tags($r['LocationCity'])); ?>
		</title>
        <description> 
			<?=htmlentities(strip_tags($r['field01'],'ENT_QUOTES'));?>
			<?=htmlentities(strip_tags($r['field02'],'ENT_QUOTES'));?>
			<?=htmlentities(strip_tags($r['field03'],'ENT_QUOTES'));?>
			<?=htmlentities(strip_tags($r['field04'],'ENT_QUOTES'));?>
			<?=htmlentities(strip_tags($r['field05'],'ENT_QUOTES'));?>
			<?=htmlentities(strip_tags($r['field06'],'ENT_QUOTES'));?>
			<?=htmlentities(strip_tags($r['field07'],'ENT_QUOTES'));?>
			Contact: <?=htmlentities(strip_tags($r['AgentName'],'ENT_QUOTES'));?>
			<?=htmlentities(strip_tags($r['AgentContact'],'ENT_QUOTES'));?>
		</description>
        <link>http://www.hartamas.com/property_details.php?UID=<?=$r['UID'];?></link>
		<guid>http://www.hartamas.com/property_details.php?UID=<?=$r['UID'];?></guid>
     </item>  
<? } ?>  

</channel>
</rss>