grantmcnally Report post Posted September 11, 2007 if i setthe link attribute in a map to this: anything after the .php doesn't show up after you click the link... eg. it goes to regions/oceania.php NOT regions/oceania.php?get=1 is there any particular reason for this? thanks Share this post Link to post Share on other sites
FusionCharts Support Report post Posted September 12, 2007 You have to URL encode the link's value : Use urlencode() PHP function to encode the link say, urlencode("regions/oceania.php?get=1") before setting this as link's value. The encoded link may look like this : regions/oceania.php%3Fget%3D1 Finally the XML element will be like this : [entity id='AU' link='regions/oceania.php%3Fget%3D1' displayValue='OC' toolText='Oceania' value='18' /] *NOTE : please read [ as < and ] as > Share this post Link to post Share on other sites