[Solved] how to store and retrieve array in mysql [closed]
Looks like you’re using the php script to construct a sql statement. I do this all the time. Try something like: $galleryIds = implode(“,”,$galleries); $sql = “SELECT * FROM galleries WHERE id IN ($galleryIds)”; Cheers and please vote me up!! OK, Here’s an edit because it seems that the Stack thinks you’re going to use … Read more