<?
function arasi($a,$b,$data)
{
$x = explode($a,$data);
$z = explode($b,$x[1]);
$oh = $z[0];
if($x && $z) { return $oh; } else { return false; }
}
$url = stripslashes($_GET['url']); # genelde mq ondur
$file = strtolower(file_get_contents("$url")) or $d = 1; // # #strtolower <TiTle ı <title a çevirmek için ## buraya kodları hangi sayfadan çekeceğini yazıyorsun .
if ($d) { echo "error"; exit;} # exit; çıkar
else {
$data[title]=arasi("<title>","</title>",$file);
$data[p]=arasi("<p>","</p>",$file);
$data[ahref]=arasi("<a href=\"","</a>",$file);
## dilediğin şekilde artır
print_r($data);#toplu göster

}
?>