Pagerank Checker [PHP] (1 Viewer)

I

Isko~

PHP:
<?php
/*********************************************\
#  Edit By Iskorpion
#            [email protected]
#            www.isko-style.tk
\*********************************************/
echo '<center><table border="0" bgcolor="white" width="240">
<tr><td><center><b>PageRank Check SPYHACKERZ</b></center></td></tr>
<tr><td><center><form action="" method="get">
<input type="text" name="adres" value="www.">
<input type="submit" value="Kacmis Bak Hele"></center></td></tr>
<form></table></center>';

function cek($adres){
#~ http://www.pagerank.gen.tr/@pagerank/iskorpion.wordpress.com;
#~ adres üstteki gibi;
$baglanilacak = "http://www.pagerank.gen.tr/@pagerank/";
$gir = $baglanilacak . $adres;
$crl = curl_init();
curl_setopt ($crl, CURLOPT_RETURNTRANSFER,1);
curl_setopt ($crl, CURLOPT_URL,$gir);
$yazdir = curl_exec($crl);
curl_close($crl);
preg_match('#<div style="text-align:center;padding:5px;">(.*)<div style="width:480px;">#si',$yazdir,$bas);
echo $bas[0];
}
if($_GET){
cek(htmlentities($_GET['adres']));
}
?>
 

Users who are viewing this thread

Top