<?php
if (file_exists($VL_include_path."/banned.txt")) {
include($VL_include_path."/banned.txt");
foreach ($VL_banned as $VL_banned_value) {
if ($_SERVER['REMOTE_ADDR'] == $VL_banned_value) {
header("HTTP/1.1 403 Forbidden");
exit();
}
}
}
?>