我想向我网站上的多个用户发送通知。他们的 ID 在一个数组中 ($userinput)。$userinput 保存成员 ID,在每个值的开头用逗号分隔(如“7,1,2,3”)。
我想运行这样的查询:
$sqlnot = "INSERT INTO lb_notif (to_id, time_sent, from_id, subject, message) VALUES ('$user_id_here', now(), '$logOptions_id', '$title', 'You have been invited to this group chat: <a href=profilechat.php?id=$logOptions_id&chat=$act_item_id>Click here to enter</a>.') ";
我怎么能把这个发送给所有这些成员?