>> I want to make the following :
>> 1. Query a site ?

Send an HTTP GET.

>> 2. Get the results of the query in my script (we are still in Apache)

That's where you will get them. You will receive a content representing a
valid HTML document.

>> 3. Exctract the information I need ?

You will need need an HTML parser or simple Perl RegExp's. You will also
have to make sure the site does not modify its formatting model. Unless you
sign a partnership program with that site, their formatting model is the
only thing you can rely upon. :)))

>> 4. Fomat it and send to the browser ?

Once you get the data structure, you just format it anyway you want.

Victor.

Reply via email to