<?php
// auto_tracking.php - Automatic page name detection

function getCurrentPageName() {
    $page = basename($_SERVER['PHP_SELF']);
    $page = str_replace('.php', '', $page);
    $page = str_replace('_', ' ', $page);
    $page = ucwords($page);
    
    if ($page === 'Index') {
        $page = 'Home';
    }
    
    return $page;
}

// Include the main tracking functions
include 'tracking.php';

// Automatically track with detected page name
logVisitor(getCurrentPageName());
?>