Do you have any idea on how to create a chart in an Excel sheet programmatically from PHP ?
I know you can invoke the Excel COM object, but the server is running on
I think it's not a bad idea to use PHPs GD library like these
WS Charts
Bar graph tutorial
or JpGraph, I'm not sure of the internals but there is free PHP5 and PHP4 versions available
I don't believe that using Excel is the best way of generating a chart. Typically, with ASP.net, you would either write your own chart rendering, or you would use an external component to do this (liberal definition).
My suggestions:
Give Google Charts API a go.
Aonther option you could look at is RRD tool, see here
HTH
Google Charts is a nice idea. I would use built-in PHP draw functions to generate a chart, though.