I want to retrieve data from the database and display it in a Graph/Chart on a webpage. In my database I have a table that contains 12 values showing the basic physical check-in details of a person. What I want is to display the results based on how many people checked in on a daily basis. The SQL would COUNT the amount of people checked in on a daily basis (MySQL), then display it on the chart page (php)
My question is how can I display this data for a Super user on a webpage? As the database is always being updated with new values each day, how would I go about creating a dynamic chart, graph or some other format that reads from the database and display the activity? Any code examples would be much appreciated. thank you.