Skip to content

Instantly share code, notes, and snippets.

@nikcub
Created November 27, 2014 09:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nikcub/84f01e51e852e89f26e0 to your computer and use it in GitHub Desktop.
Save nikcub/84f01e51e852e89f26e0 to your computer and use it in GitHub Desktop.
$ids = array_map('trim', $_POST['ids']);
$ids = array_map('intval', $ids);
$ids = implode(',', array_values($ids));
$db->query("SELECT * from table where id IN(" . $ids . ")");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment