Not sure but this code is returning incorrect values for freaking f mod :D
First iteration of the loop that this code is in returns null, second returns 1 third returns 2 fourth returns 0.PHP Code:++$blah;
$r = fmod($blah, 3);
++blah is a counter var in the loop and initially is set to 0 before the loop.
First iteration should be 1 then 2 then 3 then back to 1
Why doesnt stupid php have a standard mod operator?
