On Jul 23, 5:26 pm, opusrandy <[email protected]> wrote: > > http://wesco.jp-clients.com/branch_locate/index.php > > When you get to that page, it will display the branch you selected and > that branch ONLY. > This is the google maps API system that I have already set up. It's > running off of a database flawlessly as is. I need to find a way, to > pass a URL VARIABLE from the STATIC page to the page with my API > system on it to display the branch that the user selected.
That's a PHP question, I think? It's called a querystring and is denoted with a question mark: index.php?branch_id=45678 Your PHP script can get that branch_id with $_GET['branch_id'], do its database queries and build the page accordingly. It does mean that your static page needs to build the URLs like that. Andrew --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/Google-Maps-API?hl=en -~----------~----~----~----~------~----~------~--~---
