我正在尝试锚定回显值。我的代码如下;
while ($row = mysql_fetch_assoc($result)){
echo $row(['links'];
}
我想在HTML中锚定echo $ row ['links']的值。
谢谢你们。
答案 0 :(得分:1)
我想你想要:
while ($row = mysql_fetch_assoc($result)){
echo "<a href='".$row['links']."'>some link name</a>";
}
但问题有点不清楚
答案 1 :(得分:1)
while ($row = mysql_fetch_assoc($result)){
echo "<a href='" . $row['links'] . "'> text here </a>";
}
答案 2 :(得分:0)
<ul>
<?php while ($row = mysql_fetch_assoc($result)): ?>
<li><p class="links">
<?php echo($row['links']); ?>
</p></li>
<?php end_while; ?>
</ul>
答案 3 :(得分:0)
您缺少一个括号。
应该是:echo $row(['links']);