Using Autocomplete
Using Autocomplete
I've got Autocomplete working insofar as:
- Use PHP to get names from a database; these form the data source for Autocomplete
The database that stores the names also stores other information (id, for example) that would allow me to use a Callback to redirect to another page.
But.......how do I associate the secondary information in the database with the initial list of names? I don't want to display the extra info (id, etc) but the display info isn't sufficient for the redirection.
Hope this makes sense!!
mark