vote up 0 vote down star
function delete($rowid) 
{
   $rowids = implode(", ",$rowid);
   $sql = "DELETE FROM pms WHERE id IN (".$rowids.")";
   print $sql;
}

if (isset($_POST['submit']))  
{
	delete($rowid);
}

?>

<form method="post" action="test.php">

<input type="checkbox" name="rowid[]" value="1771367" /><br >
<input type="checkbox" name="rowid[]" value="345342" /><br >
<input type="checkbox" name="rowid[]" value="572347" /><br >
<input type="checkbox" name="rowid[]" value="902358" /><br >
<input type="checkbox" name="rowid[]" value="234654" /><br ><br >

<input type="submit" name="submit" />

</form>

Warning: implode() [function.implode]: Invalid arguments passed in C:\pub\test.php on line 4 DELETE FROM pms WHERE id IN ()

What Am I doing wrong here? Going crazy over here..

flag
Did you try $_POST['rowid']? – Gumbo Jul 25 at 17:25
im gonna sleep now.. – Ray Jul 25 at 17:32

3 Answers

vote up 0 vote down

You're not passing the right variable to your function. You need to call it with

if (isset($_POST['submit']))  
{
    delete($_POST['rowid']);
}
link|flag
vote up 4 vote down

You need to use $_POST['rowid'], if you're grabbing that from post.

Also:

Sanitize your SQL!

link|flag
Someone's going to submit your form with <input type="checkbox" name="rowid[]" value="SELECT id FROM pms" />. – Rafe Jul 25 at 17:37
vote up 0 vote down

looks like you read some really old PHP manual where register_globals = on , you need to read the POST parameters in your case..

function delete($rowid) 
{
   $rowids = implode(", ",$rowid);
   $sql = "DELETE FROM pms WHERE id IN (".$rowids.")";
   print $sql;
}

if (isset($_POST['submit']))  
{
        delete($_POST['rowid']);
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.