Hello I have a site who use a php template and I don't know which one is it. This is like that //Template class @0-9D52F602 define("ccsParseAccumulate", true); define("ccsParseOverwrite", false); class clsTemplate { var $globals = array(); // initial data:files and blocks var $blocks = array(); // resulted data and variables var $block_keys = array(); // associate array (short key, full key) var $templates_path = "./"; // path to templates var $parse_array = array(); // array ready for parsing var $position = 0; // position in parse string var $length = 0; // length of parse string var $block_path = ""; var $delimiter = ""; // delimit blocks, tags, and html's - 27 var $tag_sign = ""; // tag sign - ¤ var $begin_block = ""; // begin block sign - 16 var $end_block = ""; // end block sign - 17 with a lot of things like that //Class_Initialize Event @2-F552319D //Validate Method @2-7E1FC38C you can also find some thing like that $this->name = new clsControl(ccsLabel, "name", "name", ccsText, "", CCGetRequestParam("name", ccsGet)); $this->city = new clsControl(ccsLabel, "city", "city", ccsText, "", CCGetRequestParam("city", ccsGet)); $this->Sorter_name = new clsSorter($this->ComponentName, "Sorter_name", $FileName); $this->Sorter_city = new clsSorter($this->ComponentName, "Sorter_city", $FileName); You know which one is it? I can't find it Bobby