How to display a virtual table generated by MySQL query in HTML page – Phpmyadmin
I have this MySQL table MONTHNAME generated by querying from the database using the following script using PHP. $query = 'SELECT monthname(`dateAdded`) as MONTHNAME,sum(`shift1PinCount`+`shift2PinCount`) from `supervisorupdate` WHERE YEAR(`dateAdded`) = YEAR(CURDATE()) group by monthname(`dateAdded`) ORDER BY monthname(`dateAdded`) DESC'; $queryExecute = mysqli_query($conn,…