在html页脚中组合一个php变量

时间:2015-05-27 20:52:39

标签: html variables

我的Web应用程序中有一个php变量$companyname,这来自代码中其他地方的会话变量,我知道这可以通过简单的echo进行测试。

我用HTML编写了我的页脚,如下所示:

<!DOCTYPE html>
<html>
<body>

<footer>
  <p>This information belongs to . $companyname . if you are not the intended recipient please contact the owner or send us an  <a href="mailto:someone@example.com">email </p>
  <p>All rights reserved 2015</p>
</footer>

</body>
</html>

我之前从未在html页脚中组合变量,通常只使用带有超链接的纯文本。显然这不起作用,因为我不知道我是如何做到这一点,并用谷歌搜索它没有太大的成功。

有人可以告诉我如何让$ companyname实际显示为变量而不是文本,请参阅图片here

此外,如果它不是太麻烦,我希望$ companyname以粗体显示

1 个答案:

答案 0 :(得分:0)

您可以在<?php ... ?>块之外使用HTML。因此,基本上在HTML中输出php变量将是:

<!DOCTYPE html>
<html>
<body>

<footer>
  <p>This information belongs to <?php echo $companyname; ?> if you are not the intended recipient please contact the owner or send us an  <a href="mailto:someone@example.com">email </p>
  <p>All rights reserved 2015</p>
</footer>

</body>
</html>

但是,您没有提供有关HTML生成方式的信息,因此无法再提供帮助。