Browse Source

banners

pull/1/head
atnaguzin 8 years ago
parent
commit
b85ba663d5
  1. BIN
      img/102button.gif
  2. BIN
      img/333.gif
  3. BIN
      img/flibusta-clear.gif
  4. BIN
      img/flibusta.gif
  5. BIN
      img/onelon.png
  6. BIN
      img/pizdabol.gif
  7. 43
      index.php

BIN
img/102button.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

BIN
img/333.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

BIN
img/flibusta-clear.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

BIN
img/flibusta.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

BIN
img/onelon.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
img/pizdabol.gif

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

43
index.php

@ -13,27 +13,30 @@ @@ -13,27 +13,30 @@
<table border="0" width="100%" cellspacing="0" cellpadding="0" height="100%">
<tr>
<td align=center>
<img src="img/mask.png"><br/>
<font face="Arial" size="6">Your I2Pd Browser is working correctly</font><br/>
<img src="img/mask.png"><br>
<font face="Arial" size="6">Your I2Pd Browser is working correctly</font><br>
<font face="Arial" size="7">Welcome to Invisible Internet</font>
<br/><br/><br/><br/>
<font face="Arial" size="4">Visits:
<?php
$f=fopen("stat.dat","a+");
flock($f,LOCK_EX);
$count=fread($f,100);
if (!isset($_COOKIE['i2pdvis'])){
@$count++;
ftruncate($f,0);
fwrite($f,$count);
fflush($f);
setcookie("i2pdvis", "true", time() + 1*3600, "/");
}
flock($f,LOCK_UN);
fclose($f);
echo $count;
?>
</font>
<br><br><br>
<a href="http://102chan.i2p/" target="_blank"><img src="img/102button.gif" alt="102chan.i2p"></a>
<a href="http://333.i2p/" target="_blank"><img src="img/333.gif" width="88px" height="31px" alt="Форум, посвященный разработке и поддержке i2pd"></a>
<a href="http://flibusta.i2p/" target="_blank"><img src="img/flibusta.gif" width="88px" height="31px" alt="Флибуста - книжное братство"></a>
<a href="http://onelon.i2p/" target="_blank"><img src="img/onelon.png" alt="#onelon - анонимные блоги без цензуры"></a>
<a href="http://pizdabol.i2p/" target="_blank"><img src="img/pizdabol.gif" width="88px" height="31px" alt="Профессиональный эксперт"></a>
<!-- <?php
$f=fopen("stat.dat","a+");
flock($f,LOCK_EX);
$count=fread($f,100);
if (!isset($_COOKIE['i2pdvis'])){
@$count++;
ftruncate($f,0);
fwrite($f,$count);
fflush($f);
}
setcookie("i2pdvis", "true", time() + 1*3600, "/");
flock($f,LOCK_UN);
fclose($f);
echo("<br><br><br><font face='Arial' size='3'>Visits: " .$count. "</font>");
?> -->
</td>
</tr>
</table>

Loading…
Cancel
Save