KOD:
<?php
while($oku=mysql_fetch_array($sql))
{
$isim= $oku['isim'];
$password= $oku['password'];
$konum1= $oku['konum1'];
$konum2= $oku['konum2'];
}
?>
var konum = new google.maps.LatLng(<?php echo $konum1;?>,<?php echo $konum2;?>);
var marker2 = new google.maps.Marker({
position: konum,
title:'<?php echo $isim?>: <?php echo $password ?>'
});
marker2.setMap(map);
}