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
Post a Comment