I am using this simple script
<?php for($i=0;$i<10;$i++) {printf("%d\n",$i);}?>
i have the Dev-PHP 1.3.0 IDE and when i run my script everything seem to be allright while it is displayed in "console mode", however, when i am pressing the Execute Button and the broswer begins (IE 5.5) my numbers are not in vertical order!
like this
1
2
3
...
What is wrong?