[Solved] How to see who access my ip address from web service via wifi [closed]
to find informations about visitor request , please check you xampp apache log file . here is the code you can add in your index.php to deny access for some adress ip : <?php $deny = array(“111.111.111”, “222.222.222”, “333.333.333”); if (in_array ($_SERVER[‘REMOTE_ADDR’], $deny)) { header(“location: http://www.google.com/”); exit(); } ?> add the adress ip in $deny … Read more