I have folowing problem. I write this code:
$test = 1.54;
echo $test;
and on Win2000 + Apache 1.3.14 echo show 1.54 (correct),
but on server Win2000 + IIS5 echo show 1 (bad).
Decimals are trimmed. Is it problem with PHP or IIS?
Or, if I wrote:
$test = 2 * 0.5;
echo $test;
echo show (on Win2000 + IIS5) 0
(because 2 * 0 = 0)
What the hell means that??? 🙂 I'm hopeless, I need multiply with decimal
numbers, not only with integer values!