How can get autosuggest in cake php
- by rajesh
i hav entered my code in controller like below
function keyup(){
  $this-Note-simple();
  if(strlen($searchq)0){
while ($row = mysql_fetch_array($getRecord)) {
 echo $row['name'];  echo $row['department'];
  } 
     return $row;
 }
 }
as soon as i entered this one it doesn't display any info ....
what correction should require.......