I have a multicheckbox in a <form> tag like this:
<input type="checkbox" name="del[]" value="<?php echo $menuItems['id']; ?>"> I ask this form with this code:
if (isset($_POST['subgruppe'])) { $ids = array(); foreach ($_POST['del'] as $pval) { $ids[] = (int) $pval; } $ids = implode(',', $ids); echo "groupids"; echo $ids; echo "userid:"; echo $_POST['userid']; This shows me a result like this:
groupids13,9...userid:5 I need a statment that give me a result like this:
INSERT INTO user_groups (usergroup, userid) VALUE (13,5),(9,5) ... Can you give me a hint how i can check this? I think I can handel a solution that give me: (13,5),(9,5)... into a variable.
THanks a lot:)