How to record the number of page loads per page..
Does anyone have a code snippet for this idea??
Basically I use a single PHP template for my whole site. Each page is numbered
1 through to 7628
example:
domain.com/templates/1.php/1/good
domain.com/templates/7628.php/7628/good
Using MySQL I believe would be best and fastest approach.
and Explode to grab the URL information:
example:
domain.com/templates/7628.php/7628/good
list($first, $last) = explode('/', substr($PATH_INFO,1));
$first = 7628
$last = good