How to generate graphs and charts from mysql database in php [closed]
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this questionHow开发者_开发百科 can I generate graphs and charts from a mysql database using php?
I'm trying to use "chart director" but I can't even install it properly, because I'm using php version 5.3, and it's using a deprecated function dl
.
Do you know of any alternatives that:
- fully support php 5.3
- are easy to use for beginners
- can access the mysql database and chart its data
You can use JPGraph and Graphpite
http://jpgraph.net/
http://graphpite.sourceforge.net/
I use highcharts. They are very interactive (and very fancy I might add). You do have to get a little creative to access data from MySQL database, but if you have a general understanding of JavaScript and PHP, you should have no problems.
I use Google Chart Tools https://developers.google.com/chart/ It's well documented and the charts look great. Being javascript, you can feed it json data via ajax.
http://pchart.sourceforge.net/ looks very good and it's free.
精彩评论