Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as PHP by zumsuk ( 15 years ago )
<?php
header('Content-type:text/html; charset=utf-8');
?>
<form action="?i=g" method="post">
<input type="text" name="site" value="http://mynet.com"><input type="submit" value="Getir">
</form>
<?php
function isle($t){
$bul = array('#[removed](.*?)[removed]#si','#<style(.*?)>(.*?)</style>#si');
$cevir = array('','');
$t = (strip_tags(preg_replace($bul, $cevir,file_get_contents($t))));
return str_replace("<br />","",$t);
}
if(isset($_POST['site'])){
$coding = preg_match('#charset=.*?"#si',file_get_contents($_POST['site']));
header('Content-type:text/html; charset='.$coding);
echo '<pre>',isle($_POST['site']),'</pre>';
}
?>
Revise this Paste