php :: new line in textarea?

后端 未结 10 1982
暖寄归人
暖寄归人 2020-12-09 09:02

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.

<
相关标签:
10条回答
  • 2020-12-09 09:48

    PHP Side: from Textarea string to PHP string

    $newList = ereg_replace( "\n",'|', $_POST['theTextareaContents']);
    

    PHP Side: PHP string back to TextArea string:

    $list = str_replace('|', '&#13;&#10;', $r['db_field_name']);
    
    0 讨论(0)
  • 2020-12-09 09:50

    Carriage Return

    \n 
    \r
    <br />
    ^M
    
    0 讨论(0)
  • 2020-12-09 09:50

    i have used \p for text files. try

    0 讨论(0)
  • 2020-12-09 09:54

    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.

    0 讨论(0)
提交回复
热议问题