Page is a not externally linkable
eelixduppy - 7:05 pm on Sep 13, 2012 (gmt 0)
Not sure I understand the whole issue here. Doesn't this work?
$currentPoints = 511;
$threshold = 500;
if($currentPoints > $threshold) {
echo 'Passed threshold';
$threshold += 500; // increase threshold value
}