I have the following code in my form
<input style="height:80px;width:232px;font-size:20px" maxlength="250" name="address" type="text" value="<?php echo $address;?>" />
It works fine and value in $address is showing in the text field. But I need to replace the text field to text area.For that I wrote the following code,
<textarea style="height:80px;width:232px;font-size:20px" maxlength="250" name="address" value="<?php echo $address;?>" ></textarea>
But this code shows no values. Please help me.