jlomeli Report post Posted February 7, 2007 Hello. My code follows your basic suggeston for php: <?php //We've included ../Includes/FusionCharts.php, which contains functions //to help us easily embed the charts. include("../Includes/FusionCharts.php"); ?> <HTML> <HEAD> <TITLE>FusionCharts - Simple Column 3D Chart</TITLE> </HEAD> <BODY> <?php //Create the chart - Column 3D Chart with data from Data/Data.xml echo renderChartHTML("../../FusionCharts/Column3D.swf", "Data/Data.xml", "", "myFirst", 600, 300, false); ?> Using this example it seems that if multiple users hit the server at the same time they may get a chart using the data.xml file generated for another user. Is this correct? Do you have a recommendation for session control? Or any way to ensure each user gets his own chart data? Please advise. Thank you. JL Share this post Link to post Share on other sites
Pallav Report post Posted February 8, 2007 You do not need to write physical XML files on your server disk. Instead, you can virtually relay them as explained at http://www.fusioncharts.com/FusionCharts/Docs/ > Guide for Web Developers > FusionCharts and PHP. This way each user will get his own data. Share this post Link to post Share on other sites