text area content code example
Example 1: syntax is being placed in my textarea in html
<textarea name="comment" rows="5" cols="100"></textarea></br></br>
Example 2: html set textarea value
// To set the textarea value, you must insert the TEXT into the element.
<textarea>VALUE</textarea>
// javascript
var textarea = `<textarea>${value}</textarea>`;
document.getElementById('my_textarea_id').textContent = 'foo'
// php
$value = 'foo';
$textarea = "<textarea>$value</textarea>";
echo $textarea;