// search.cat version 1.0 // -- START USING DMOZ SERVER -- global $path; $site = "http://www.dmoz.org/" . $path; if (! $page = fopen("$site","r")) { echo("Error opening page. Please try again."); exit; } while (!feof($page)) { $lines .= fgets($page,255); } fclose($page); // -- END USING DMOZ SERVER -- // -------------------------------------------------------------- // -- START TRIMMING HTML -- $start_pos = strpos($lines, "\n"); $lines = substr($lines, $start_pos); $lines = explode("
"; echo $lines; echo "\n\n |