_table = 'test'; $this -> _pk = 'testid'; parent::__construct(); } public function fetchall(){ $data=array(); foreach(DB::fetch_all("select * from %t ",array($this->_table)) as $value){ $data[]=$value; } return $data; } } ?>