Textarea her satırı alın

0 Cevap php
<textarea> put returns between paragraphs
for linebreak add 2 spaces at end
indent code by 4 spaces
quote by placing > at start of line
</textarea>

$text = value from this textarea;

How to:

1) Get each line from this textarea ($text) ve kullanarak onlarla çalışmak foreach()

2) Add <br /> her satırın sonuna kadar, sonuncusu hariç?

3) Throw each line to an array.

Important - textarea içindeki metin çok dilli olabilir.


Kullanmayı denedim:

$text = str_replace('\n', '<br />', $text);

Ama çalışmıyor.


Teşekkürler.

0 Cevap