I want to create and display a value which is increasing by a fixed amount per second.
I have the following variables in my PHP file:
$AccountValue=220000; $IncreasePerSecond=15;
So for example when the page loads the value would be 220000 after one second the value would be 220015 after another second 220030 ....etc
thanks in advance