Desired outcome: define string var in PHP and echo it into textarea control as contents.
Problem: Textarea only contains:
</body>
</html>
INDEX.PHP:
<?php
$y = "Bonkers";
?>
<html>
<body>
Here is a textarea control:<br />
<textarea id='myText' rows="30" cols="120" value='<?php echo $y; ?>' />
</body>
</html>