如果我执行此操作,我将正确获得输出:

echo "<a href="'.$elink.'">'.$elink.'</a>";

但当我想以表格列格式显示输出时,我无法插入:
echo "<td width='200'>" <a href="'.$elink.'">'.$elink.'</a>   "</td>";
or
echo "<td width='200'>" "<a href="'.$elink.'">'.$elink.'</a>"   "</td>";
or
echo "<td width='200'>" '<a href="'.$elink.'">'.$elink.'</a>   "</td>";

最佳答案

请更正语法错误。

echo '<td width="200">' .  '<a href="'.$elink.'">'.$elink.'</a></td>';

关于php - 在php页面中将链接显示为启用了mysql的超链接输出,但出现错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21160261/

10-09 18:38