I want to able to read an xml file from another site to generate a page from the data on another site, what is the best way to go about this using, javascript, html and php?
httpwebwitch
1:17 pm on Jun 8, 2009 (gmt 0)
the best way: PHP, hands down. It's a one-liner:
$str = file_get_contents($url);
Before you do this, be sure that you're permitted to use their XML file like that. Does the other site intend for their data to be repubulished, or are you ... stealing?