Hi All, Can any one help me for creating Pie Chart, Bar chart in php... please send PHP code.. Thanks Sam
Have you taken a look at Open Flash Chart? I've heard it has kind of a high learning curve, but it's extremely powerful (and tech-sexy).
Have you tried Google Chart API? It uses URL parameters to draw charts. I think it is a simple way to create charts.
can any one explain how to make graph in php.... http://pear.veggerby.dk/ this site is good. how to install GD in php 5 thanks Sam
Create a file called info.php in your server with following code <?php phpinfo(); ?> Code (markup): Search for GD Library. It will most probably be enabled in your server.
Apart from Google Chart API from, which actually embeds an image of the chart using the data in the GET request, you might also want to check out the Google Visualization API, which are Javascript based. In the Visualization API approach, the data does not have to be sent to Google's server to create the Chart image. Instead the browser's graphics capabilities are used (Canvas for Firefox, Chrome, etc., and VML for Internet Explorer) to come up with the charts directly within the interface.