if($_REQUEST[‘id’]){
$file = fopen (“http://www.newreality.com/remote_scripts/remote-solutions.php?id=”.$_REQUEST[‘id’], “r”);
if (!$file) {
echo ”
Unable to open remote file.\n”;
exit;
}
while (!feof ($file)) {
$line = fgets ($file, 1024);
echo $line;
}
fclose($file);
}
else {
echo “Sorry, we cannot find that program.”;
}