这可能看起来像一个愚蠢的问题,我知道如何在正常的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的下划线删除的内容,所以我想我会问这个问题。
感谢您的帮助。
答案 0 :(得分: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
答案 1 :(得分:0)
<style>
a,a:hover
{
text-decoration:none;
}
</style>