in reply to I can't make a new line =(

Well, if you are playing with CGI, you should be outputting HTML tags such as <p></p> or <br />.

The \n that you're outputting is putting newlines in your HTML document, but that doesn't affect how the document is rendered in a browser. If you want a newline to be rendered in the browser, the HTML that your script is outputting needs a tag that would be rendered as a newline. <br /> is one option, or using proper paragraph tags.


Dave

Replies are listed 'Best First'.
Re^2: I can't make a new line =(
by dsheroh (Monsignor) on Jun 13, 2006 at 21:23 UTC
    A touch OT, but, since it's been mentioned twice in this thread...

    Has the HTML standard been amended to make <br /> the 'proper' form of the break tag or are people just generalizing and trying to be XMLish in HTML?