I've got a cheeky little PHP issue with conversion to int where the result is one less than I believe it should be.
(int) 4005 = 4005 (Correct)
(40.05 * 100) = 4005 (Correct)
(int) (40.05 * 100) = 4004 ??????
Any ideas?
Many thanks in advance for any help
Colin