im using the mirc /filter command to copy the contents of a file generated by a mirc script over to a php file. the contents of the file is something like:
one
two
three
four
...
is it possible to use php to automatically add in <br /> before or after each new line?
eg.
one<br />
two<br />
three<br />
...
edit.. all sorted with nl2br 🙂