How can get autosuggest in cake php
Posted
by rajesh
on Stack Overflow
See other posts from Stack Overflow
or by rajesh
Published on 2010-04-30T07:36:44Z
Indexed on
2010/05/03
11:08 UTC
Read the original article
Hit count: 272
php
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.......
© Stack Overflow or respective owner