gpt4 book ai didi

php - 将表格行更改为链接

转载 作者:太空宇宙 更新时间:2023-11-04 14:09:09 25 4
gpt4 key购买 nike

我正在尝试将 PHP 在表中输出的行更改为链接。我已将 a href 标记添加到下面的示例中,但它会导致意外的 T_VARIABLE。我在没有额外引号的情况下尝试过,但这显示了一个空白表格。我不确定逻辑上的缺陷是什么。

while($row = mysql_fetch_row($result))
{
echo "<tr>";

// $row is array... foreach( .. ) puts every element
// of $row to $cell variable
foreach($row as $cell)
echo "<td><a href="$cell"</a></td>";

echo "</tr>\n";
}

最佳答案

您需要转义双引号,因为这是您的字符串分隔符。

 echo "<td><a href=\"$cell\">Link</a></td>";

或者使用单引号

 echo '<td><a href="' . $cell .'">Link</a></td>';

关于php - 将表格行更改为链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/280687/

25 4 0
文章推荐: c++ - 执行 : convert execve call to fork
文章推荐: Java - 从 JTextArea 检索和显示信息
文章推荐: c++ - 将方法传递给包含对象指针的集合的所有元素,C++
文章推荐: css - 通过 包含的 HTML/CSS 未正确显示