tags:

views:

34

answers:

2

how to show data from database inside text area....

A: 

Just get your data in $data print then $data then and you're done.

$data = "one line\nother line";

echo '<textarea>', $data , '</textarea>';
Aif
+1  A: 
<textarea rows="" cols=""><?php echo $yourdata; ?></textarea>
Soufiane Hassou