What are the best practices for integrating a PHP counter script into a webpage?

When integrating a PHP counter script into a webpage, it's important to ensure that the script is secure, efficient, and accurately counts the desired metrics. To do this, you can create a PHP script that increments a counter variable stored in a database each time the webpage is loaded. This ensures that the count is persistent and accurate across different users and sessions.

<?php

// Connect to your database
$servername = "localhost";
$username = "username";
$password = "password";
$dbname = "counter_db";

$conn = new mysqli($servername, $username, $password, $dbname);

// Check connection
if ($conn->connect_error) {
    die("Connection failed: " . $conn->connect_error);
}

// Increment the counter in the database
$sql = "UPDATE counter_table SET count = count + 1";
$conn->query($sql);

// Display the counter value on the webpage
$sql = "SELECT count FROM counter_table";
$result = $conn->query($sql);

if ($result->num_rows > 0) {
    $row = $result->fetch_assoc();
    echo "Page views: " . $row["count"];
} else {
    echo "0 results";
}

$conn->close();

?>