如何在textarea中显示来自DB的数据

In the following code, I can display the values from the DB in text boxes but how would I display them in the textarea?

<form action="" method="post">
  <input type="hidden" name="id" value="<?php echo $id; ?>"/>
  <div>
     <p>
     <strong>ID:</strong>    
     <?php echo $id; ?>
     </p>
     <strong>userid: </strong>    
     <input type="text" name="userid" value="<?php echo $userid; ?>" /><br/>
     <strong>name: </strong>     
     <input type="text" name="name" value="<?php echo $name; ?>" /><br/>
     <strong>phoneno: </strong>      
     <input type="text" name="phoneno" value="<?php echo $phoneno; ?>" /><br/>
     <strong>emailid: </strong> 
     <input type="text" name="emailid" value="<?php echo $emailid; ?>" /><br/>
     <strong>description: </strong>    
     <textarea name="description" value="<?php echo $description; ?>" rows="5" cols="40">    </textarea>
</form> 

Just put it in the tags like this:

<textarea name="description" rows="5" cols="40"><?= $description; ?></textarea>

It is not the value in text area use this

<textarea name="description" rows="5" cols="40"><?php echo $description; ?></textarea>

Change this

<textarea name="description" value="<?php echo $description; ?>" rows="5" cols="40"></textarea>

To

<textarea name="description"  rows="5" cols="40"><?php echo $description; ?></textarea>
<textarea name="description"><?php echo $description; ?></textarea>