gpt4 book ai didi

php - 在php中显示链接

转载 作者:行者123 更新时间:2023-11-29 01:10:22 26 4
gpt4 key购买 nike

我正在尝试将存储在 mysql 中的 URL 显示为 php 表中的链接,如下所示

echo "<td><a href=".$row['resume'].">Resume</a></td>";

其中 $row['resume'] 使用 mysql_fetch_array 检索正确的数据

但是文件链接之间的空格会被自动截断

例如我的文件名是“this is a resume.doc”我只在链接中得到“this”

帮助。

最佳答案

您需要在 href 属性两边加上引号。

echo "<td><a href=\"".$row['resume']."\">Resume</a></td>";

关于php - 在php中显示链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7718290/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com