Hi all,
This is my first post for help on an issue.
I have a friend who has just installed the Console Realestate software, it exports an xml file in the reaxml file format (a sample export is attached).
What I want to do is create a website that looks in the xml file for the property details. I will have seperate pages for Residential Sales, Residential Rentals, Commercial Sales, Commercial Rentals and Vacant Land.
I have had a few attempts using javascript but it doesn't seem to work.
Any help that you could provide would be greatly appreciated.
Cheers,
Ben
XML SAMPLE: (saved as export.xml)
PHP Code:
<<?xml version="1.0" ?>
<propertyList date="2007-01-30-09:18:38" username="console" password="your account password">
<rental modTime="2007-01-30-09:18:38" status="current">
<agentID>45873232</agentID>
<uniqueID>3</uniqueID>
<dateAvailable>2007-01-30T09:18:38.883</dateAvailable>
<rent period="weekly">180</rent>
<address display="yes">
<streetNumber>65</streetNumber>
<street>Figtree Road</street>
<suburb>YOURTOWN</suburb>
<state />
<postcode />
<country>Australia</country>
</address>
<category name="House" />
<headline />
<description>
<![CDATA[
<P>Sundrenched Family Home </P><P></P><P>Spacious 3 bedroom family home featuring separate lounge and dining, open plan gourmet kitchen with dishwasher and gas cooking, polished floors in the living areas, built in robes, main with walk in robe and ensuite bathroom, separate teenagers retreat or home office, single lock up garage. </P>
]]>
</description>
<features>
<bedrooms>4</bedrooms>
<bathrooms>1</bathrooms>
</features>
<objects>
<img id="m" modTime="2007-01-30-09:18:38" file="p3i2.jpg" />
</objects>
</rental>
<residential modTime="2007-01-30-09:18:38" status="current">
<agentID>45873232</agentID>
<uniqueID>7</uniqueID>
<authority value="exclusive" />
<price display="yes">790000</price>
<address display="yes">
<streetNumber>182</streetNumber>
<street>Robertson Court</street>
<suburb>MYTOWN</suburb>
<state />
<postcode />
<country>Australia</country>
</address>
<category name="Townhouse" />
<headline>Expansive Family Residence</headline>
<description>
<![CDATA[
<P>Cascading over four expansive levels, this superb wide fronted (6.1m) terrace sets a new standard in contemporary living and offers a lifestyle of comfort and convenience. </P>
]]>
</description>
<features>
<bedrooms>1</bedrooms>
<bathrooms>2</bathrooms>
<pool type="inground">yes</pool>
</features>
<objects>
<img id="m" modTime="2007-01-30-09:18:38" file="p7i8.jpg" />
</objects>
</residential>
</propertyList>