在下面的代码中,我想将打印出来的单词作为变量“$ 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>';
答案 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>';