atari Posted January 11, 2006 Report Share Posted January 11, 2006 Lieta tāda, kad kāds ienāk saitā iedarbinās šads skripts: <? $juuzera_ip = $_SERVER["REMOTE_ADDR"]; $sliktaas_ip = array('127.0.0.1', '192.168.0.1' utt., utml.); if (in_array($juuzera_ip, $sliktaas_ip)) { include_once('1.php'); } else { include_once('index.php'); } ?> Varbūt kādam nesagādā grūtības pievienot šim skriptam, tādu iespēju, ka tiktu izsūtīts e-mail uz piem.: banned@mansdomeens.lv ar info, ka ši (banned) IP adrese tikos un tikos ir apmeklējusi saitu. Paldies! Link to comment Share on other sites More sharing options...
Analgiins Posted January 11, 2006 Report Share Posted January 11, 2006 <?php $juuzera_ip = $_SERVER["REMOTE_ADDR"]; $sliktaas_ip = array('127.0.0.1', '192.168.0.1' utt., utml.); if (in_array($juuzera_ip, $sliktaas_ip)) { $message = "Banned IP ($juuzera_ip) ".date('l dS \of F Y h:i:s A')." ir apmeklējusi saitu."; mail('banned@mansdomeens.lv', 'Banned IP', $message); include_once('1.php'); } else { include_once('index.php'); } ?> Link to comment Share on other sites More sharing options...
v3rb0 Posted January 11, 2006 Report Share Posted January 11, 2006 aiz vai pirms include_once('1.php'); pieliec to kas rakstīts http://lv.php.net/mail piemēros Link to comment Share on other sites More sharing options...
Recommended Posts