Author


[insert_php]

if($_REQUEST[‘id’]){

$file = fopen (“http://www.newreality.com/remote_scripts/remote-author.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 author.”;
}

[/insert_php]