crazy4php;10879569 wrote:how do i keep track of the number of times a user reloads a page..help
...sessions
Then increment a session variable:
// ... php code before...
$_SESSION['times_reloaded']++;
// ... php code after ...
I'll leave the rest in your capable hands.