CD Stats

[insert_php]
$file = fopen (“http://mainnas.home/cds.php”, “r”);
if (!$file) {
echo ”

Unable to open remote file.\n”;
exit;
}
while (!feof ($file)) {
$line = fgets ($file, 1024);
echo $line;
}
fclose($file);
[/insert_php]