tags:

views:

142

answers:

3

Hi guys,

How do you create a new line in a textarea when inserting the text via php?

I thought it was \n but that gets literally printed in the textarea.

Thanks

A: 

i have used \p for text files. try

zod
A: 

Without seeing your code I cannot be sure, but my guess is you are using single quotes ('\n') instead of double quotes ("\n").

PHP will only evaluate escape sequences if the string is enclosed in double quotes. If you use '\n', PHP will just take that as a literal string. If you use "\n", PHP will parse the string for variables and escape sequences and print a new line like you are expecting.

Alan Geleynse
And what If you are using no quotes ;) (i.e its coming straight from a variable.
Hailwood
A: 

Carriage Return

\n 
\r
<br />
^M
Phill Pafford