HTML锚定PHP回显值

时间:2010-01-14 01:49:20

标签: php mysql html

我正在尝试锚定回显值。我的代码如下;

while ($row = mysql_fetch_assoc($result)){

echo $row(['links'];

}

我想在HTML中锚定echo $ row ['links']的值。

谢谢你们。

4 个答案:

答案 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']);