Hey All, I am trying to write a php script and would like to have an autosuggest text box with data from a mysql database. This would be for designating a town in a form.
The sql query I would use would be.
$sql = "SELECT DISTINCT `Town` FROM '".$Table_Name."' ";
Then there would be a second autosuggest text box that would only select cemeteries in the town from the first box.
I have found a few tutorials on the web but can't seem to get them to work with a sql query.
Does anyone have any suggestions???