是否可以将php值回显到表单标签中?目前我只能回显到可以为用户编辑的文本框,但我希望它无法像标签一样编辑,我可以这样做吗?
以下是可以使用的文本框
<input style="color:#000000" type="text" value="<?php echo $account['Username']; ?>" name="name" required/>
我试图在标签中回显但我的网站上没有显示
<label for="fullname"><?php echo $account['Fullname']; ?></label>
答案 0 :(得分:1)
使用echo语句。像这样:
<label><?php echo ("this is a label");?></label>
答案 1 :(得分:0)
当然有可能。
您可以使用之前使用过的echo函数。
确保:
试试这个:
// index.php
<?php
$text = "privet";
?>
<label for="fullname"><?php echo $text; ?></label>
// output is <label for="fullname">privet</label>
BTW:如果它仍然无效......只需使用dump来获取变量信息
<label><?php echo $var; ?></label> // does not working
// ok -> then dump the var!
<?php var_dump($var); ?> // hmm.. lets see (maybe null or string(0)?) :-)