<a href="show.php?id=23">电视</a>| <a href="show.php?id=24">冰箱</a>
以下是show.php代码
<?php
$id=$_GET['id']
// 这样就获得ID值了,然后就可以查询数据库或更新数据库了
?>
mysql_select_Db("hedejiang")先把大小写改了,
你也得告诉print_r($p)打印出什么来才好分析
<?php
$p=$_POST['checkbox']
print_r($p)
mysql_connect("localhost","hedejiang","hedejiang")
mysql_select_db("hedejiang")
$sql="select * from `imusic` where `imusic_id` in (join(',',$p))"
$query=mysql_query($sql)
while($assoc=mysql_fetch_assoc($query)){
echo $assoc['imusic_name']
}
?>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)