i am trying to save value inside input files. code below works fine when i use input field
<input type="text" name="price"
value="<?php if(isset($_POST['price'])){echo htmlentities($_POST['price']);}?>" />
but when i do same thing inside testarea it dooesnt safe the value. any idea why its dont safe it?
<textarea type="text" name="description"
value="<?php if(isset($_POST['description'])){echo htmlentities($_POST['description']);}?>"></textarea>