I want to display the number of views of my homepage and continuously increase the views whenever a user opens that page. How to achieve this using PHP and MYSQL?
Its simple, whenever is your index.php or index.html is accessed increase the viewcount by 1 and update the view count stored in your MYSQL db.
For example say I want include("abc.php") two times in a PHP page?