I'm using the 'Auto-Complete' feature from the Yahoo! UI Library, which is working fine.
The array used to return data to the drop-down of 'auto-completed' results is like so:
However, I need this to be populated with results pulled in from a database...PHP Code:return array(
'a' => array(
"apple"
),
'b' =>(
"banana"
),
'o' =>(
"orange"
)
);
Any idea how I can do this??
Cheeeeeers





Bookmarks