用的着吗?
<html>
<head>
<meta http-equiv="content-type"content="text/html;charset=gb2312">
<title>音乐空间——专辑试听</title>
<style>
<!--
a:link{text-decoration:none;color:"#000000"}
a:visited{text-decoration:none;color:"#000000"}
a:active{text-decoration:none}
a:hover{text-decoration:none;color:"f00000"}
-->
</style>
</head>
<body bgcolor="#fb9804">
<p align="center">
<font color="#ffffff"><span style="font-family:arial;font-size:11pt">
==音乐空间——专辑试听==</span></font>
</p>
<div align="center"><center>
<table border="0"cellpadding="0"width="80%"cellspacing="8"
style="font-family:arial;font-size:11pt">
<tr>
<td bgcolor="#fef29c"height="25"><font color="#800080">歌手</font></td>
<td bgcolor="#fef29c"height="25"><font color="#800080">专辑名</font></td>
</tr>
<?
$mysql_db=mysql_connect("localhost","root","9919");
mysql_select_db("music",$mysql_db);
$sql="SELECT singer,table from song where singer like '$singer' group by tape";
$sql_result=mysql_query($sql,$mysql_db);
while($sql_row=mysql_fetch_array($sql_result))
{
print("<tr>");
print("<td>$singer</td>");
print("<td><a href=\"songlist.php?singer=$singer&tape=$sql_row[tape]\">$sql_row[tape]</a></td>");
print("</tr>\n");
}
mysql_close();
?>
</table>
<p><a href="singerlist.php">返回歌手列表</a></p>
</center>
</div>
</body>
</html>这是我的全部代码,帮忙,快点,谢谢