You are not logged in.
Hi there,
The plugin allows the user to populate a jquery autocomplete field with data from Google Maps API but I want to
1) pass the selected values to a PHP script that will insert the data from Google Maps API (city, province, country, postal code, longitude, latitude) into a local MySQL database if it does not already exist, then
2) forward the user to a URL using the 'ID' of the row which contains the inputed data values (ie, www.example.com/forward.php?city=id)
Does anyone know how to accomplish these tasks? Any help would be very much appreciate!!! Thank you in advance!!!
Offline
use jQuery ajax to send data to server and return the url or id
http://api.jquery.com/category/ajax/
within ajax success callback do the redirect
Offline