期望的结果:在 PHP 中定义字符串 var 并将其作为内容回显到 textarea 控件中。
问题:Textarea 仅包含:
</body>
</html>
索引.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>