|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 3/28/2007 9:41:09 AM
Posts: 6,
Visits: 25
|
|
| Hello. My code follows your basic suggeston for php: <?php
include("../Includes/FusionCharts.php"); ?> <HTML> <HEAD> <TITLE>FusionCharts - Simple Column 3D Chart</TITLE> </HEAD> <BODY> <?php 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
|
|
|
|
|
FusionCharts Team
      
Group: Administrators
Last Login: Yesterday @ 8:20:12 AM
Posts: 2,194,
Visits: 521
|
|
| 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.
Thanks, Pallav Nadhani FusionCharts Team
|
|
|
|