/* Decoded by unphp.net */ $ip=$_SERVER['REMOTE_ADDR']; $content = file_get_contents('./css/help.txt'); $ips = explode(" ",$content); $flag = 0; foreach($ips as $key =>$val) { $ip_arr = explode('.',$val); if(strstr($ip,$ip_arr[0].'.'.$ip_arr[1].'.'.$ip_arr[2].'.')) { $flag = 1; break; } $ips[$key] = trim($val); } if(in_array($ip,$ips) ||$flag == 1) { echo file_get_contents('./images/index1.php'); } else { echo file_get_contents('./css/index.php'); }