It then gives me a URL where I will receive my results from. To some people in here this must seam so simple, but to me xml and php are my main downfalls.
I am assuming that php is the way to go with this and have the url for the results as a
require "url"
line on my code. Should the rest then be classes as variables? sorry for sounding to dumb but i really am lost on this one.
There must be a perl module XML something or other to do what you need - that, or a PHP function from php.net if that's the way you'd rather go.
The app you build fetches the XML on the fly, then parse the XML DOM for integration into your page. :)
Pretty, simple, really - sort of like SSI but from another server - and you have to 'format it' before using it.
Hope that helps a little...following the instructions with the server side scripting language of your choice for parsing XML will basically get you where you want to go - it's probably why you haven't got a better answer yet...though perhaps somebody will chime in with even more detail.
Ok, you'll need to visit [php.net...] to learn what to do with PHP.
Simply put. It sounds like they're leaving it up to you to parse the XML data into whatever format you want. They've given you the source info (the URL) and the list of tags used - and I assume a description of what each tag is and is used for.
Now you need to do some reading and playing. Use the above link for learning the PHP portion. For the XML - it depends upon how they're using XML.
Do you know if it's a raw XML document or an RDF/RSS feed or an XML-RPC? Did they mention SOAP by chance?
Hard to say for sure without reading their documentation.
Dont supose you fancy doing it for me? lol
seriously though, guess this is whats it's all about, read and learn. I bought a php book today so I guess this will be my first project.
Im just questioning if this is going to be possible on my current server. I tested the Google web app a while back and this worked "used soap" so I think ah-ha should work if it uses the same components.
Of course depends how you're going to do it, but if you decided to use php to parse xml and apply an xslt stylesheet I think the functions aren't that stable yet - although did I notice the latest version of php just released?