External Links
$fh = @fopen("/vdoms/files/links.db","r");
if ($fh) {
while (!feof($fh)) {
$rawline = fgets($fh);
$line = trim($rawline);
if ($line != "") {
list ($url,$altext) = explode("|",$line);
echo "
";
if ($altext == "") {
echo "http://$url";
} else {
echo "$altext";
}
echo "\n";
}
}
}
?>