0

这似乎是一个愚蠢的问题,我知道如何在正常的 html 过程中删除下划线,但在使用 php 时我似乎无法弄清楚。

这是我的代码

while($row = mysql_fetch_array($oteaminfo)) 
{
echo "<tr>";
echo '<td><a href="cnghlplayerinfo.php?PlayerID='.$row['PlayerID'].' style="text-decoration:none;">'.$row['FullName'].'</a></td>';
echo "<td>".$row['Position']."</td> ";
echo "<td>".$row['Height']."</td> ";
echo "<td>".$row['Weight']."</td> ";
echo "<td>".$row['DOB']."</td> ";
echo "<td>".$row['Team']."</td> ";
echo "<td>".$row['CNGHLRights']."</td> ";
echo "<td>".$row['InternationalTeam']."</td> ";
echo "<td>".$row['InternationLeague']."</td> ";
echo "</tr>";
}
echo "</table>";

我四处搜索,但找不到任何关于 php 下划线删除的信息,所以我想我会问这个问题。

谢谢你的帮助。

4

2 回答 2

7

您缺少值"href替换此

echo '<td><a href="cnghlplayerinfo.php?PlayerID=' . $row['PlayerID'] . ' style="text-`decoration:none;">' . $row['FullName'] . '</a></td>';`

与下面

echo '<td><a href="cnghlplayerinfo.php?PlayerID=' . $row['PlayerID'] . '" style="text-decoration:none;">' . $row['FullName'] . '</a></td>';

我建议不要使用inline css,而是使用css class

于 2013-09-05T05:13:38.917 回答
0
<style>
a,a:hover
{
    text-decoration:none;
}
</style>
于 2013-09-05T05:15:04.830 回答