In debug mode I have noticed that the unescape(strURL) is removing everything after & symbol why is this
var strURL = "createChart.php?chartType=stacked&view=all&date=2007-11-08";
strURL = unescape(strURL);
//alert(strURL);
chart_chartID = new FusionCharts("flash/MSStackedColumn2D.swf", "chartID", 950, 370, "1", "1");
chart_chartID.addParam("wmode", "transparent");
chart_chartID.setDataURL(strURL);
result in debug mode:
as you can see by the highlighted red part the whole url string is not being passed. please help.