Change text in website on autopilot?

MicGrez

Regular Member
Joined
Aug 11, 2011
Messages
387
Reaction score
114
So I got a text on my website like:

Last Rewards Given: 45 Minutes ago

Any chance I can make the number "45" increase by X for each 10 hours or so?

Thanks in advance
 
its a reward site i think so the value will be in Config.php or in Sql DB

change it there
 
Here you go ;-)

Code:
$iStartValue = 45;
$iStartTime = strtotime('2011-01-03');
$iIncrementValue = 5;
$iIncrementHours = 10;

$iActualValue = floor( (time() - $iStartTime) / 3600 ) * $iIncrementValue + $iStartValue;

echo 'Last Rewards Given: '.$iActualValue.' Minutes ago';
 
Back
Top