Forum Moderators: coopster
this is possible. ajax is based on http so you can request with php just the same as your browser does on that ajax website. the 'only' thing you need to do is to analyze the request your browser sends to the server and pick out the right one.
this whole process tends to be network analysis and you will need a tool like a sniffer or a proxy for that.
if you do not want to go that way, you can analyze the sourcecode of the website using ajax and look into the javascript to find out what request is fired in there. that's the other way round. for this method you need to be experienced with javascript and you should be able to read other peoples source.
these are the two methods i would choose at first, maybe some other and easier approches are available in the javascript forum.
for the php part: use curl or even fopen() to request the data.
--hakre