Click to See Complete Forum and Search --> : Simple download counter
Mouse77e
08-05-2006, 07:28 AM
for some wierd reason the page thats getting all the hits on my site is the Wallpapers... can i get a count on how many downloads / times the individual link to an image has been cilcked? flat file for choice... please
Mouse
bokeh
08-05-2006, 12:04 PM
You'd need to make some sort of click through. If your <a> looks like this:<a href="filename.ext"> change it to: <a href="counter.php?file=filename.ext">then in counter.php:<?php
#record details of $_GET['file'] to your chosen method here
# redirect
header('Location: '.$_GET['file']);
?>Something like that anyway.