textarea can't have a default value

html, php, textarea

Solution

There is no `value` attribute

<textarea class="wideInput" cols="30" rows="10" ><?php echo $row['foodDescription']; ?></textarea>

Problem

check these lines please ``` <textarea class="wideInput" cols="30" rows="10" value="<?php echo $row['foodDescription']; ?>" ></textarea> <input value="<?php echo $row['foodDescription']; ?>" /> ``` the input type has the default value, but the textarea doesn't , why please , what is the solution?

Original source

Related problems