标签: php mysql
您好我有这个数组:
$_SESSION['id'] = array();
我想选择所有数组ID,然后从数据库中选择它们。 怎么做?我不知道..
答案 0 :(得分:0)
$sql='select name from table where id in ('.implode(",",$_SESSION['id']).')';