get the text in a textarea html code example
Example: html set textarea value
// To set the textarea value, you must insert the TEXT into the element.
// javascript
var textarea = ``;
document.getElementById('my_textarea_id').textContent = 'foo'
// php
$value = 'foo';
$textarea = "";
echo $textarea;