如何回显包含变量的超链接?

时间:2010-06-16 18:08:14

标签: php string-formatting

在下面的代码中,我想将打印出来的单词作为变量“$ submittor”打印为"http://www...com/.../members/index.php?profile=$submittor"的超链接。

我无法上班;我认为我的格式错误。

我该怎么做?

提前致谢,

约翰

echo '<div class="sitename3name">Submitted by '.$submittor.' on '.$dt->format('F j, Y &\nb\sp &\nb\sp g:i a').'</div>';

1 个答案:

答案 0 :(得分:1)

你遗漏了链接。

$link="<a href='http://www...com/.../members/index.php?profile=$submittor>$submittor</a>";
echo '<div class="sitename3name">Submitted by '.$link.' on '.$dt->format('F j, Y &\nb\sp &\nb\sp g:i a').'</div>';