我试图在html中的输入标签内输出php脚本的输出,但它不起作用。我尝试过“ htmlentities ”和“ htmlspecialcharacters ”但仍未打印任何内容。但是,如果我在输入标签内键入任何内容,它会显示正常。我如何在内部使用php标签?
<label class="control-label" id="temp">
<input type="hidden">
<?php echo 'helo'; ?>
</input>
</label>
答案 0 :(得分:0)
它不会显示,因为输入是隐藏的。将<input type="hidden">
更改为<input type="text">
答案 1 :(得分:0)
您可以使用value=''
$x = 'Hello';
echo "<input type='hidden' value='$x'";
所以在你的情况下:
<label class="control-label" id="temp">
<input type="hidden" value=" <?php echo 'helo';?> ">
</label>
我没有测试过这个,但我相信你可以这样做。