I got a gaming site with 1000 diffrent games, and i want tracking/counter how many times each game has been played. Do i need to make 1000 Unique scripts for this? Is there a faster way to do it?
Create a database table with the game id and the count of how many visits. Then add code which increments the counter for that game id to the game page. if your site is something like game.php?id=7 , then you can use $_GET['id'] to find the current game id.