如何将$ user变量的值添加到按钮名称?

时间:2015-01-14 18:05:41

标签: php html variables button

我试图在按钮上显示用户的名字$ user但我不知道该怎么做:

这里有一些代码     

    include ("config.php");
    include ("adminchk.php");   // Check if user is admin
    include ("getdir.php");
    include ("lang/lang_".$lang.".php");
if (isset($uStat) and $uStat===TRUE)
    {
        echo $GLOBALS['l_menuWelcome'] . " " . $user."\n";

        if ($admin===TRUE) echo "*";
        echo "<div class='quote'>\n";    ... etc

这里是按钮代码:

<button type="button" class="btn btn-default" onclick="location.href='userconnect.html'" >$user</button>

感谢您的时间:)

1 个答案:

答案 0 :(得分:2)

要在某些HTML中间打印PHP变量,您需要将其包装在PHP标记中并使用echo。因此,假设您的按钮代码来自PHP文件,代码如下所示:

<button type="button" class="btn btn-default" onclick="location.href='userconnect.html'" >
    <?php echo $user; ?>
</button>

Documentation