|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 9/25/2007 1:50:56 AM
Posts: 2,
Visits: 5
|
|
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
|
|
|
|
|
Supreme Being
      
Group: Moderators
Last Login: 9/5/2008 4:15:20 AM
Posts: 772,
Visits: 1,228
|
|
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 >
Regards,
Sudipto Choudhury FusionCharts Team
|
|
|
|