php - Displaying text area input within something other than text area -


i working on form completion view needs copied. 1 of inputs displays multiple lines. person can type out looks this.

dear bob, here this.

thank sirrahal

i take data , store database varchar(1500) latin1_swedish_ci. issue when try display data in other combines lines 1. example not above display this:

blockquote

dear bob, here this. thank sirrahal

the reason why can't use textarea display because doesn't copy , paste friendly.

questions: 1) there way of displaying correctly? 2) there hidden characters in string can use identify in php , parse text?

this code work can't use textarea:

<textarea>     <?php echo $model->description;?> </textarea> 

i believe need add nl2br when output, e.g.

<?php echo nl2br($model->description);?> 

Comments

Popular posts from this blog

javascript - Bootstrap Popover: iOS Safari strange behaviour -

Magento/PHP - Get phones on all members in a customer group -

session - Logging Out Using PHP -