On Apr 26, 10:53 am, "J.S" <[email protected]> wrote: > 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
1. the map div has zero size in IE6 (at least that is what is being reported to the API. 2. Your html is invalid (probably not the problem, but invalid html can cause problems): http://validator.w3.org/check?uri=http%3A%2F%2Fwww.computing.northampton.ac.uk%2F%7E07479549%2Fproject%2Fp1%2Findex.php&charset=%28detect+automatically%29&doctype=Inline&group=0 3. you haven't fixed the problem that Andrew told you about in his last post. This: getDirections(Northampton,<h3>KFC</h3><br>59-116 Abington St, Northampton NN1 [email protected],-0.890995) isn't going to work... -- Larry > > 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 > athttp://groups.google.com/group/google-maps-api?hl=en. -- 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.
