in reply to Auto completing a form from and to a mysql database
This is 95% a client side problem. You'd need to use something like jQuery and javascript on the client to populate things that you get back from the server (e.g. when they've typed your three letters in the Artist field it'd fire off an AJAX request to /api/complete?field=Artist&entry=van which would return a JSON list of everything matching "van" in your DB).
Here's a sample mojo implementation that a quick search turned up on SO.
The cake is a lie.
The cake is a lie.
The cake is a lie.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Auto completing a form from and to a mysql database
by marto (Cardinal) on Oct 15, 2020 at 16:28 UTC | |
by Fletch (Bishop) on Oct 15, 2020 at 18:00 UTC | |
by marto (Cardinal) on Oct 15, 2020 at 18:38 UTC | |
|
Re^2: Auto completing a form from and to a mysql database
by Dazz45X (Novice) on Oct 15, 2020 at 15:25 UTC |