May 7, 2007 at 10:40 am
#735821
Member
[PHP]
if (function_exists(‘file_get_contents’) && ini_get(‘allow_url_fopen’)) {
$xml = @ file_get_contents(‘http://www.brightshare.com/top_payouts/AllSlotsTopPayouts.xml’);
if ($xml !== false) {
$c = preg_match_all(‘|.*?
foreach ($items as $item) {
/*
* Now use array as you wish
* $item[1] – Name
* …
* $item[6] – Country
*/
}
}
}
[/PHP]