[Solved] Echoing PHP in HTML [duplicate]


Textarea’s don’t have a value attribute. The content gets wrapped in the <textarea> tags:

<textarea id="element_5" name="Description" class="element textarea medium">
    <?php echo $person['description']; ?>
</textarea>

4

solved Echoing PHP in HTML [duplicate]