I catch an error, could you tell me if you have some ideas? class Dsptraining extends AppModel { function GetDsptrainings() { return $this->findBySql("select max(start_date) start_date from tbl_dsptrainings"); } } class DsptrainingsController extends AppController { function index() { $data = $this->Dsptraining->GetDsptrainings(); echo $data[0]['start_date']; } } Error message: Undefined index: start_date in c:\Inetpub\wwwroot\Cake\app\controllers\dsptrainings_controller.php on line 33 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php