Hello
I have Some Bad IPs Banned thru .htaccess , i need simple file to unban some people from the file htaccess by tyeping the ip in a box and hit submit , i do it now manualy by downloading the htaccess and then look for the ip i need to unban .. there should be Easy way .. Right ..
Maybe somthing like this but not sure
PHP Code:
<?php
if ($_POST['unbanme'] == "the Victim IP")
{
remove_blacklist($REMOTE_ADDR);
?>
function
PHP Code:
function remove_blacklist ($ip)
{
global $blacklist_file, $htaccess;
{