c=$c->c; $this->DB=$c->db; } function RSdepartment(){ $this->SetQuery("select * from Department order by deptId"); } function GetRecord(){ if ($this->result = $this->GetResult()) { $this->deptId = $this->result['deptId']; $this->deptName = $this->result['deptName']; $this->deptDesc = $this->result['deptDesc']; $this->deptCode = $this->result['deptCode']; $this->deptParent = $this->result['deptParent']; $this->deptYear = $this->result['deptYear']; $this->deptDate = $this->result['deptDate']; $this->deptRef = $this->result['deptRef']; $this->pbriId = $this->result['pbriId']; $this->depttypeId = $this->result['depttypeId']; $this->deptParentId = $this->result['deptParentId']; $this->deptLevel = $this->result['deptLevel']; $this->deptGroup = $this->result['deptGroup']; return 1; }else { return 0; } } function SearchByKey($xKey){ if ($this->SetQuery("select * from Department where deptId= '$xKey'")){ return 1; }else { return 0; } } //****************** You can add new functions below **********************// function RSdepartment2(){ $this->SetQuery("select * from Department where deptDate!='0000-00-00' order by deptId"); } function MaxDate(){ $this->SetQuery("select max(deptDate) as num from Department"); if ($result=$this->GetResult()) { return $result['num']; } } function SearchDeptByMaxdeptDate(){ $maxdate = $this->MaxDate(); $this->SetQuery("select * from Department where deptDate = '$maxdate' order by deptId"); } } //--End class Department-- ?>