在Textarea中显示PHP

时间:2015-10-22 15:22:10

标签: php html

我试图在文本区域中显示一个php变量,但它只输出文本区域标签之间的内容

这是我的代码:

echo  "Allergens Contained "    .'<textarea rows="4"     name="Allergens_Contains">   <?php echo $contains; ?></textarea>';

在我的网页上的文字区域,我得到的是<?php echo $contains; ?>

1 个答案:

答案 0 :(得分:3)

您应该通过以下方式连接字符串和变量:

<?php
echo 'This is text ' . $php_variable . ' more text';

<?php
echo "This is text " . $php_variable . " more text";

<?php
echo "This is text $php_variable more text";

<?php
echo "This is text {$php_variable} more text";