Unable to open remote file.\n"; exit; } while (!feof ($file)) { $line = fgets ($file, 1024); /* This only works if the title and its tags are on one line */ if (preg_match ("@\(.*)\@i", $line, $out)) { $title = $out[1]; break; } } fclose($file); echo "

$title

"; exit; ?>