How to plot real-time control charts on a web page using MySQL data and PHP?

2.4k Views Asked by At

I have real-time humidity and temperature data saved in a MySQL database. Now, I want to create a web page to monitor real time weather data in control charts. How do I plot real-time control charts on a web page using MySQL data and PHP?

1

There are 1 best solutions below

1
On

You would need a client-side scripting language like Javascript to make ajax request to dynamically update the content of the page. PHP is a server side language and will not be able to do that.