I want to keep the original "<br>" tag in the output, without actually creating a line break.
How do I do this?
-Thanks
Use this:
print htmlentities ('<br>');
the htmlentities thingy converts all signs to html ASCII-convertion code or something like that.
remember to keep the (' ') intact, you can replace ' with " if you want to print ' to the browser or vice versa