<?
/*
PTK - DFLabs
Copyright (C) 2008 - DFLabs srl - All rights reserved
hide@address.com
*/
include("check_session.php");
include("check_session_image.php");
$name = preg_replace("/[^a-zA-Z0-9\.]/", "", $_GET['arg1']);
$name = "../filter/".$name;
if (file_exists($name)){
$line = file($name);
echo $line[0];
}else{
echo "File not found";
}
?>