I just installed php 4.3 on windows xp. It seems that new lines are ignored.
The following code
<?php
for ($i=0; $i<10; $i++){
print "test";
}
?>
outputs the word test ten times on the same line instead of on ten different
lines.
Any suggestions would be appreciated.
Thanks much.
The following code
<?php
for ($i=0; $i<10; $i++){
print "test";
}
?>
outputs the word test ten times on the same line instead of on ten different
lines.
Any suggestions would be appreciated.
Thanks much.
Comment