There are two websites A & B
Website A [the client] is run on Windows, ASP, IIS, MSQL
Website B [the server] is run on linux, PHP, Apache, MySQL
Website A has a layout based on ASP include files
Two seperate areas have been reserved for data concerning website B
Website B (the server) needs to perform searches called from website A (the client) and print it's results on website A
The two above mentioned areas on website A will contain:
1. a search form (data sent to website 😎
2. the results (data recieved by website 😎
If area 1, under website B's guidance, is managed by website A,
website A sends it's search data to an ASP program called WA2.asp on it's own server, this program outputs data to area 2 (the results area).
The forementioned program WA2.asp sends the search data (in a get method string) to a program on website
B called WA2.php.
WA2.php performs a search on it's own MySQL database and returns WA2.asp the search results data.
WA2.asp prints out the returned date in the appropriate results area.
Do you think this could work?
Do you think normal serach options such as sorting could be supported under this method ?
Do you think that this could be implemented with XMLHTTP ?
I would greatly appreciate any feedback
thanks 🙂
yem