Even with the help of Firebug my problem still remains unresolved, is
there anyone else with any possible answers to my problem?

Website link:

http://www.computing.northampton.ac.uk/~07479549/project/p1/index.php

PHP coding used to retrieve marker details from the MYSQL database

<?php header("Content-type: text/xml");?>
<markers>
<?php

//connect to db

$link = mysql_connect("********", "*********", "*********") or
die("Could not connect: " . mysql_error());
mysql_selectdb("p1",$link) or die ("Can\'t use dbmapserver : " .
mysql_error());

//run query
$result = mysql_query("select * from markers1");

//loop data
while($data = mysql_fetch_array($result)){
        echo ("\t <marker lat=\"$data[latitude]\" lng=\"$data[longitude]\"
html=\"$data[address]\" label=\"$data[address]\" category=
\"$data[category]\" icontype=\"$data[icon]\"/>");
}
?>

</markers>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps API" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-maps-api?hl=en.

Reply via email to