if (!preg_match('/^131\.155\.70\..*/', $_SERVER["REMOTE_ADDR"])) die();
//Debug options:
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
include_once('ocdparse.inc.php');
define('ME', $_SERVER['PHP_SELF']);
$fle = @$_FILES['userfile'];
if ($fle) {
echo "";
$p = new OCDParse();
$p->parse_file($fle['tmp_name']);
print_r($p);
echo "
";
}
?>