Franek: JavaScript-Werte in PHP-Variablen überführen

Beitrag lesen

Moin !

Wie bekomme ich denn die Ergebnis-Werte aus der JavaScript-Funktion auf die Folgeseite, so daß sie dort mittels $_GET["lon"] resp. $_POST["lon"] usw. weiterzuverarbeiten sin ? Mit einem Formular - das habe ich kapiert, aber wie formatiere ich die input-Felder korrekt ?
Danke im Voraus. Grüße, Franek

  
  
<?xml version="1.0" encoding="UTF-8"?>  
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">  
<html xmlns="http://www.w3.org/1999/xhtml">  
<head>  
<title>iPhone 3.0 geolocation demo</title>  
<meta content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" name="viewport"/>  
<script>  
function handler(location) {  
var message = document.getElementById("message");  
message.innerHTML ="<img src='http://maps.google.com/staticmap?center=" + location.coords.latitude + "," + location.coords.longitude + "&size=300x200&maptype=hybrid&zoom=16&key=YOURGOOGLEAPIKEY' />";  
message.innerHTML+="<p>Longitude: " + location.coords.longitude + "</p>";  
message.innerHTML+="<p>Latitude: " + location.coords.latitude + "</p>";  
message.innerHTML+="<p>Accuracy: " + location.coords.accuracy + "</p>";  
}  
navigator.geolocation.getCurrentPosition(handler);  
  
</script>  
</head>  
<body>  
  
<div id="message">Standort wird ermittelt ...</div>  
  
<br>  
<br>  
  
<form action="geoloc4b.php" id="geoloc" name="geoloc" method="post">  
<input type="hidden" name="lat" id="lat" value="+ location.coords.latitude +">  
<input type="hidden" name="lon" id="lon" value="+ location.coords.longitude +">  
<input type="submit" value="weiter">  
</form>  
  
</body>  
</html>