如何将php变量回显到html textarea中

时间:2016-12-12 14:18:59

标签: php html textarea

我有以下问题。我想在html textarea中回显一个php变量。但我不能让它为我工作。这是我的代码。

<?php

$y = 123

?>

<textarea name="delay" cols="50"rows="5" id="delay">
<?php echo $y ?>
</textarea>

这是我看到的

enter image description here

1 个答案:

答案 0 :(得分:0)

一种简单的方法可能是:

<?php

$y = 123;

echo "<textarea title='textarea' name='delay' cols='50' rows='5' id='delay'>".$y."</textarea>";

?>

cols="50"rows="5"之间也应该是一个空白空间。喜欢:cols="50" rows="5"