PHP Classes

File: example_tr.php

Recommend this page to a friend!
  Classes of Murat Atay   FloodDam   example_tr.php   Download  
File: example_tr.php
Role: Example script
Content type: text/plain
Description: Turkish Example Page
Class: FloodDam
Protect a site against abusive number of accesses
Author: By
Last change:
Date: 18 years ago
Size: 700 bytes
 

Contents

Class file image Download
<?php require('flooddam.php'); ?>
<?php
$flooddam
= new flooddam();
?>
FloodDam Demo<br>
<br>
Bu demoya bağlandığınız IP adresiniz <b><?=$flooddam->client_ip;?></b> dir.<br>
<br>
<?php if (empty($flooddam->client_seconds)) { ?>
Henüz maksimum istek sayısı <b><?=$flooddam->hits;?></b>'e ulaşmadınız.
<?php } else { ?>
Son yaptığınız <b><?=$flooddam->hits;?></b> istek arası geçen süre <b><?=$flooddam->client_seconds;?></b> saniyedir.<br>
Son yaptığınız <b><?=$flooddam->hits;?></b> istek arası geçen ortalama süre <b><?=$flooddam->client_average;?></b> saniyedir.<br>
<br>
Minimum süre olan <b><?=$flooddam->seconds;?></b> saniyeyi aşarsanız IP adresiniz bloke edilecektir.
<?php } ?>