I have created a database to retrieve the uploaded images.
database name: text table name: ntable
it contains 3 columns, namely ID, File_name, type.
now i want to display the count of total images retrieved in data in other html page. Kindly help me how can i do this.
Jeremiah Ikwuje
Software Engineer
You can use this.
SELECT COUNT(*) FROM ntable;You can also read this tutorial on my blog for more illustration. phpout.com/2018/01/28/how-to-display-total-number…