html textarea rows code example
Example 1: textarea rows cols
Example 2: 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;