PHP和标题标签

时间:2015-03-10 21:36:53

标签: php title

我已经尝试在网上搜索,但我找不到解决方案。

如何在php代码中添加带空格的'title'标签?

我有这个:

echo "<li id='".$folder.'/'.$entry."' title=".$entry.">".$entry."</li>

在这个例子中变量$ entry =“Test one two three”,但当我的鼠标超过div时,它只显示“one”,他在第一个空格处停止。

如何显示所有标题?

问候。

1 个答案:

答案 0 :(得分:1)

问题是缺少单引号:您的PHP将输出

<li id='somefoler'/'Test one two three' title=Test one two three>Test one two three</li>

这不是你想要的。尝试

echo "<li id='$folder/$entry' title='$entry'>$entry</li>";