Hi guys.
Here's the scenario.
I'm pulling info (property details) from 4 different xml sources. The sources may contain the same property, but different details, say for example, source A has got phone numbers of property A, source B has got addresses and emails of property A, source C has got images of property A etc. I need to combine them and display them uniformly on my site.
Like
property A,
address,
phone,
email,
image etc,
instead of
property A,
phone
property A,
address,
email
property A,
image
Besides this combining of details, I also need to be able to sort the list by alphabetical order, as well as value of the property.
Would inserting into a temporary table and retrieving the data be faster?
Or would assigning everything into a multi-dimensional array, and using array sorting be faster for displaying purposes?
The data can be 1 record or up to 300 records..
Also, which one will be able to facilitate paging better?
Any one able to suggest anything? Or has anything better in mind? Please guide me!
Thanks!