*/ include("session.php"); require("test_param.php"); require_once("class_db.php"); require_once("class_folders.php"); $func = new functions(); //Reinitialiser le tableau des copier/couper: coller $_SESSION['folder'] = array(); $_SESSION['param'] = "1"; $what = ""; $where = ""; if(isset($_GET['what'])) { $what = addslashes($func->wash($_GET['what'], "no", "", "no")); $where = " ( FILEPLAN_DESCRIPTION like '".strtolower($what)."%' or FILEPLAN_DESCRIPTION like '".strtoupper($what)."%')and SHARED_FILEPLAN = 'Y' "; } $folders = new folders(); $folders->fileplanslist($where,$what); ?>