Are any of you familiar with fusioncharts? http://www.infosoftglobal.com/FusionCharts/
I recently purchased this to create cool flash graphs from my MySQL database. The flash files require XML to work and the tutorials only came with ASP examples.
I need help writing PHP that will grab my data from MySQL and then create an XML document on the fly so that fusioncharts .swf file can understand. Can anyone help? I've had a hard time finding tutorials on this. Here is a some sample XML that they sent me (and what it should loook like after being exported):
<graph caption='Site hits per hour'>
<categories><category name='0000' showName='1' />
<category name='0100' showName='0' />
</categories>
<dataset seriesname='Sat' color='0080C0' showValue='0' lineThickness='2'>
<set value='36' />
<set value='71' />
</dataset>
<dataset seriesname='Sun' color='008040' showValue='0' lineThickness='2'>
<set value='23' />
<set value='40' />
</dataset>
</graph>
Thank you!!
Roger