这似乎是一个愚蠢的问题,我知道如何在正常的 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 下划线删除的信息,所以我想我会问这个问题。
谢谢你的帮助。