[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

[Solved] Error: you have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use

Error: you have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use solved Error: you have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use

[Solved] images on CGI or HTML files

Impossible to answer because you haven’t given us anywhere near enough information. But your code does give one potential clue. use CGI qw/:standard/; use DBI; print “Content-type:text/html\n\n”; print first(); print myform(); print second(); sub myform { return <<B; <form action=” method=’post’> <img src=”https://stackoverflow.com/questions/26614013/images/img0001.gif” id=”Shape1″ align=”top” alt=”” title=”” border=”0″ width=”1344″ height=”126″> … </form> B } You … Read more