Extremefall
Mitglied
Hallo,
ich habe ein Problem beim Einbinden von JavaScript in PHP. Mein Code:
Wie müsste es lauten?
ich habe ein Problem beim Einbinden von JavaScript in PHP. Mein Code:
PHP:
while($row = mysql_fetch_array($result)){
$friendfirstname = $row["firstname"];
$friendfirstname = htmlspecialchars(strip_tags($friendfirstname), ENT_QUOTES);
$friendlastname = $row["lastname"];
$friendlastname = htmlspecialchars(strip_tags($friendlastname), ENT_QUOTES);
$currlocation = $row["currlocation"];
$currlocation = htmlspecialchars(strip_tags($currlocation), ENT_QUOTES);
geocoder.getLatLng(
$currlocation,
function(point) {
if (!point) {
alert(address1 + ' not found');
} else {
map.setCenter(point, 7);
var marker = createMarker(point,'Benutzer: $friendfirstname<br>Standort: '+$currlocation);
map.addOverlay(marker);
}
}
);
}