php输出一个表格在表格嵌套超链接
echo'<tablestyle="width:800px;hight:200px"border="1"><tr><th>歌曲名称</th><th>歌手名称</th></...
echo '<table style="width:800px;hight:200px" border="1">
<tr>
<th>歌曲名称</th>
<th>歌手名称</th>
</tr>';
while($row=mysql_fetch_array($res)){
echo '<tr>';
echo '<th onclick="choose(this.innerHTML)">'.$row["name"].'</th>';
echo '<th>' . $row["gname"] . '</th>';
echo "</tr>";
}
echo '</table>'; 我想在$row['name']加个超链接 展开
<tr>
<th>歌曲名称</th>
<th>歌手名称</th>
</tr>';
while($row=mysql_fetch_array($res)){
echo '<tr>';
echo '<th onclick="choose(this.innerHTML)">'.$row["name"].'</th>';
echo '<th>' . $row["gname"] . '</th>';
echo "</tr>";
}
echo '</table>'; 我想在$row['name']加个超链接 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询