在页面标题中添加PHP变量

时间:2015-12-09 14:36:33

标签: php

我有这个产品名称:

 ".$product -> name."

和这个标题:

$head["title"] = "same title text here";

如何在标题中添加产品名称?谢谢。 我已经尝试过转换和重新排列,谷歌搜索等等。

2 个答案:

答案 0 :(得分:0)

如果您的代码位于同一文件中,请尝试以下操作:

<?php $head["title"] = $product->name; ?>

<title><?php echo $head['title']; ?></title>

答案 1 :(得分:-1)

试试这个,

$title = $product -> name;

in html

<title><?php echo $title ?></title>