I used
<textarea name="question" class="input" width="250"></textarea>
to add data in sql. i used multi line , in database also data is stored in multi line only.
Then i used
$question=$row['1'];
echo "<tr><td colspan='5'>",$row[1],"</td></tr>
to display the data but the data are displaying in single line . how to make it appear in mulit line like as in database.
<pre>tags<?php echo(nl2br($row[1])); ?>nl2br()should be fine.