Hi, maybe you could use sessions - if you register a session and give it a value, increment it and reload the page the new value is available.
sessionTest.php
<?
session_start();
session_register("SESSION");
if (! isset($SESSION)) {
$SESSION["count"] = 0;
echo "<li>Counter initialized, please reload this page to see it increment";
} else {
echo "<li>Waking up session";
$SESSION["count"]++;
}
echo "<li>The counter is now $SESSION[count] ";
?>
You could use something similar
check out http://www.devshed.com/Server_Side/PHP/Commerce/Commerce2/page4.html