Code: Select all
for ($i = 0; $i <= 100; $i++) {
print $i . "\n";
}I even tried replacing the \n with \r\n and it still gives me one continuous line. How do I output each in its own line?
Moderator: General Moderators
Code: Select all
for ($i = 0; $i <= 100; $i++) {
print $i . "\n";
}Code: Select all
print $i . "<br/>";Code: Select all
<body>
<p>there is a huge gap betwen words</p>
</body>