You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
674 B
PHP
20 lines
674 B
PHP
<?php
|
|
echo "<pre>";
|
|
$fd = fopen ("http://www.neocounter.net/neocounter/full_premium_trial.php?user_counter=39792_1", "r");
|
|
while (!feof($fd)) {
|
|
$von = array("%20","%3A","%2F","%0A", "%7B","%7D","%28","%29","%3C","%3E","%3B","%3D","%09","%23","%27","%22",
|
|
"%2A","%21","%2C","%3F","%26","%5B","%5D",
|
|
"%25",
|
|
"tr->", "td->",
|
|
);
|
|
$auf = array(" ", ":", "/", "<br>","{", "}", "(", ")", "<-", "->",";", "=", " ","#", "'", '"',
|
|
"*", "!", ",", "?", "&" ,"[", "]",
|
|
"%",
|
|
"tr-><br>\n","td-><br>\n",
|
|
);
|
|
$buffer = str_replace($von,$auf,fgetss($fd, 4096));
|
|
echo $buffer;
|
|
}
|
|
fclose ($fd);
|
|
echo "</pre>";
|
|
?>
|