Forum Moderators: coopster
1) request the site's source code / page via URL from within my script
2) retrieve the requested information from within my script
3) deal with / parse the information inside my script
PHP has Filesystem functions [php.net] such as file_get_contents [php.net] that make this easier. If you need to POST information first you can open your own socket or use curl. To parse the XML code returned you can use a number of functions but one of the easiest is the new SimpleXML functions [php.net] bundled with PHP5.