Hi and thanks for yoyr prompt reply.
I have just use
<?php echo "$name <br /> $address1" ?>
but the output is:
Guild Court Hotel <br /> 3 Guild Street
Now I must say that this code is embedded in a javascript.
var marker = new GMarker(new GPoint(<?php echo $GET['lon']?>, <?php echo $GET['lat']?>));
map.openInfoWindow(map.getCenterLatLng(),
document.createTextNode("<?php echo "$name <br /> $address1" ?>"));
map.addOverlay(marker);
Should this make it any different.
Thnaks again.