I'm having a hard time trying to figure out how to get the response from below code which is located in the Controller back in the View:
if ($this->request->isAjax()){
Configure::write ( 'debug', 0 );
$this->autoRender = 0;
$this->layout = 'ajax';
$results = "My Data";
echo json_encode($results);
}
//tried doing this and it doesn't work
$this->set('results',$results);
I just want be able to access the data that is in the $results variable back in my View.