I\'m trying to do an echo of a variable containing 1400000. so there is written: echo round(1400000); this gives 1,4E+6 instead of the full number. Anybody an
echo round(1400000);
Possibly related to this bug report, so you could try
printf("%d", $myvar);