I am developing a site which need a huge data dynamic in nature. I can't afford such a huge data on my server but there are lot of sites using it. Let me clarify with an example.
Suppose a site hotel.com have list of all hotels. It allows user to search hotels with ajax query. As soon as user type a letter it shows possible hotel names with that letter and user selects out of them.
I am designing a site which need hotel names but i don't have them all and lot of names keep on adding.
So how can I design a page so that when I enter a letter in my site, I get all relevant results from hotel.com in a drop-down menu?
EDIT 1
Based on replies, here are more specification. Based on microspino relpy, I think i can manage space if i scrap the data periodically. I wont be needing all the data once. So you can forget the space limitation. All I need is data which is not available to me directly.
EDIT 2
Based on solutions, i thought of a possible workaround that i can let user enter the hotel names manually and i can cross check their validity at backend based on the data on the hotel.com site. What shall i use to it at backend i.e fetch results from the site and compare them?