I have two forms, latitude and longitude, i.e.:
<form action="">
Latitude <input type="text" name="latitude" /><br />
Longitude: <input type="text" name="longitude" /><br />
<input type="submit" value="Continue">
</form>
When I click submit, I want to be taken to a new page on which is drawn a google map with a marker centered at the input coordinates.
I know how to draw the map, I'm just not sure how to transfer the coordinates from one HTML page to the next one. Can someone show a quick example? I'm assuming there's supposed to be an action=something and/or method=something for the form, but I've never done it before.
This is part of a phonegap webapp. I am not sure whether it is possible to use cookies in that context.