"-6ren">
gpt4 book ai didi

php - 来自 mysql db 的 url,在带有 php 的表中带有 标记

转载 作者:行者123 更新时间:2023-11-30 22:59:50 26 4
gpt4 key购买 nike

我找不到我想知道的问题,因为我已经编写了大部分代码,只需要这一小部分来工作,所以很难理解别人的问题。

这是不起作用的部分:

echo "<TD width='220px' style='padding:5px;'>" . "<a href='>" . $row['horselink'] ."'><strong>" . $row['name'] . "</strong></a></td>";

我希望 href 从 horselink 列收集数据,以便它链接名称。我尝试了几种方法,但就是无法正常工作。任何人都有好的提示或想法如何正确编写链接/url 部分,因为表格的其余部分工作得很好。

完整代码如下:

 <?php
include("conn.php"); //Databas koppling
mysql_set_charset("utf8");
$result = mysql_query("SELECT name, horselink, born, gender, discipline, breed, sire, dam FROM Horse WHERE horsetype = 'young' ORDER by born");
//Hämtar all information från kurser


echo "<table id='trhover' class='tableclassen' cellpadding='3' cellspacing='1'>";
echo "<TR class='trhead' style='text-transform:uppercase; background-color: #6e3f47;'>";
echo "<TD width='220px' style='padding:5px;'><strong>Name<strong></TD>";
echo "<TD width='60px' style='padding:5px;'><strong>Dob</strong></TD>";
echo "<TD width='90px' style='padding:5px;'><strong>Gender</strong></TD>";
echo "<TD width='110px' style='padding:5px;'><strong>Discipline</strong></TD>";
echo "<TD width='120px' style='padding:5px;'><strong>Breed</strong></TD>";
echo "<TD width='160px' style='padding:5px;'><strong>Sire</strong></TD>";
echo "<TD width='160px' style='padding:5px;'><strong>Dam</strong></TD>";
echo "</TR>";


while($row = mysql_fetch_array($result)) // Skriver ut all information i en tabell
{
echo "<TR>";
echo "<TD width='220px' style='padding:5px;'>" . "<a href='>" . $row['horselink'] ."'><strong>" . $row['name'] . "</strong></a></td>";
echo "<TD width='60px' style='padding:5px;'>" . $row['born'] . "</td>";
echo "<TD width='90px' style='padding:5px;'>" . $row['gender'] . "</td>";
echo "<TD width='110px' style='padding:5px;'>" . $row['discipline'] . "</td>";
echo "<TD width='120px' style='padding:5px;'>" . $row['breed'] . "</td>";
echo "<TD width='160px' style='padding:5px;'>" . $row['sire'] . "</td>";
echo "<TD width='160px' style='padding:5px;'>" . $row['dam'] . "</td>";
echo "</tr>";
}
echo "</table>";

?>

最佳答案

关于php - 来自 mysql db 的 url,在带有 php 的表中带有 <A> 标记,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24588794/

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