On 9 feb, 19:21, "[email protected]" <[email protected]> wrote: > On Feb 9, 9:33 am,rpboer<[email protected]> wrote: > > > > > On 8 feb, 23:03, Andrew Leach <[email protected]> wrote: > > > > On Feb 8, 9:49 pm,rpboer<[email protected]> wrote: > > > > > It seems that the "markers" are not picked up or loaded. so therefore > > > > it stays "empty" and there is nothing to show ...? > > > > It is however strange that earlier posts give a result in IE that at > > > > least picks-up the markers, but no info is shown.... > > > > Very very confusing this........ > > > > That's becausehttp://test.villasud.nl/google_maps.php?output=xml&omgeving= > > > isn't producing the right output type. > > > > Your line > > > header("Content-Type: application/xml"); > > > should be > > > header("Content-Type: text/xml"); > > > which Larry suggested about five hours ago. IE is forgiving about > > > almost everything; but definitely not about XML. That needs to be > > > exactly right. > > > > You can leave that line where it is, after the "if" statement: it must > > > be before any actual output is done though. > > > > Andrew > > > Hello Andrew, > > did what you suggested. But no luck with the end result. The xml file > > looks ok now : test.villasud.nl/google_maps_all.php?output=xml , clean > > code with the output I expected. > > But the header still says: > Content-Type:·application/xml(CR)(LF) > > Try these:http://www.rexswain.com/httpview.htmlhttp://web-sniffer.net/ > > -- Larry > > > > > If I use the page test.villasud.nl/google_maps_all.php my popup > > windows show information also. > > But I did make a change in the xml file and put the word "TEST" in 3 > > places. If I use the test.villasud.nl/google_maps_all.php? > > output=xml I DO get the to see the "TEST" tekst. > > In IE stil no luck, however the use of : test.villasud.nl/ > > google_maps_all.php?output=xml does show good code I think ;-). > > Where o where does it go wrong......- Hide quoted text - > > > - Show quoted text -
Checked the sites it says now ; Content-Type:·text/html(CR)(LF) (on http://www.rexswain.com/cgi-bin/httpview.cgi). What I changed was using htmlentities and now the markers are shown in IE in FF with the correct info ...... but it screws up my original text and now places % and + signs....because of this change to htmlentities. Part of the code is now $data['naam'] = urlencode($data['naam']); $html = "<table border='0' width='380' height='112'> <tr> <td rowspan=4 valign=top><a href='/villa_detail.php?id=". $data['id']."' target='_blank'><img src='/includes/make_image.php?id=". $image['Id']."&style=image&width=150&height=200' border='0'></a></td> <td colspan=2 valign=top align=left><a href='/villa_detail.php? id=".$data['id']."' target='_blank' class='extraknop_groen'>".htmlentities($data['naam'])."</a></td> </tr> <tr> <td class='villadetail' style='background-color: #EBEBEB;'>TEST PLAATS</td><td class='villadetail'>".htmlentities($data['titel'])."</ td> </tr> <tr> <td class='villadetail' style='background-color: #EBEBEB;'>TEST/ Persons</td><td class='villadetail'>".$data['personen']."</td> </tr> <tr> <td class='villadetail' style='background-color: #EBEBEB;'>TEST/ Bedrooms</td><td class='villadetail'>". $data['slaapkamers']."</td> </tr> As you can see I use the word TEST in there.....but it is not shown in the "balloons".. -- 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.
