*/ //include("session.php"); //require("test_param.php"); require_once("class_db.php"); require_once("class_letterbox.php"); $func = new functions(); $what = ""; $where = ""; if(isset($_GET['what'])) { $what = addslashes($func->wash($_GET['what'], "no", "", "no")); $where = "and (LASTNAME like '".strtolower($what)."%' or LASTNAME like '".strtoupper($what)."%') "; } $LB = new LetterBox(); $LB->contactlist($where,$what); ?>