Hello, Here is my script...
echo gettype($minimum).'<->'.gettype(($number)).'<br>';
ECHO $number.' >= '.$minimum.' ? -> ';
IF ($number >= $minimum) {
echo 'oui <br>';
RETURN('1');
} ELSE {
echo 'non<br>';
RETURN('0');
};
};
If $number > $minimum => no problem :o)
If $number < $minimum => no problem :o)
If $number = $minimum => problem for numbers terminating by .3 or .8. Ex: 1.3, 1.8, 2.3, 2.8, 3.3, 3.8,... For other numbers, it is ok.
I really don't understand.
Can someone help me?
I've this problem with php4 under win and linux.
Thanks, I really need help.
Seb