Brian Maring Report post Posted March 14, 2009 Hi, I have the full developer package and have made maps work before without the Evaluation tag appearing in the top left hand corner. However, it does appear for this map. Is there some sort of problem? Thanks, Brian <? include("FusionMaps.php"); ?> <? $strXML = ""; $strXML .= ""; $strXML .= ""; $strXML .= ""; $strXML .= ""; $strXML .= ""; $strXML .= ""; $username="*******"; $password="*******"; $database="*******"; mysql_connect(localhost,$username,$password); @mysql_select_db($database) or die( "Unable to select database"); $query="SELECT DISTINCT state FROM `entries` WHERE year = 2009 AND time != '' ORDER BY state"; $result=mysql_query($query); $num = mysql_num_rows($result); $i=0; while ($i < $num) { $state=mysql_result($result,$i,"state"); $query2="SELECT * FROM `entries` WHERE year = 2009 AND time != '' AND state='" . $state. "'"; $result2=mysql_query($query2); $num2 = mysql_num_rows($result2); $strXML .= ""; $i++; } $strXML.=""; $strXML.=""; echo renderMap("FCMap_USA.swf","","$strXML","firstMap", 650, 450,0,0); echo $strXML; ?> Share this post Link to post Share on other sites
Rahul Kumar Report post Posted March 16, 2009 (edited) Hi, Please download a fresh copy from our Product Update Center and replace your old Maps SWF files with the new Maps SWF. Edited March 16, 2009 by Guest Share this post Link to post Share on other sites