<?
/*
PTK - DFLabs
Copyright (C) 2008 - DFLabs srl - All rights reserved
hide@address.com
*/
include("check_session.php");
include("sanitize.php");
$id = sanitize(RemoveXSS($_GET['id']),INT);
$name = sanitize(RemoveXSS($_GET['name']),PARANOID);
if($id=='0'){
$_SESSION['case'] = stripslashes($name);
}else{
$_SESSION['image'] = stripslashes($name);
}
?>