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 に答える