Jump to content

[SOLVED] Multi Private Message Deletion


Cless

Recommended Posts

Hello.

 

If you had a Private Messaging Inbox system, and had a check box beside each Private Message, and at the top, there was a 'Delete Selected Private Message' option, how would you loop the data so it deletes each selected Private Message, and what would the value of the check box be? The ID of the Private Message?

 

Thanks!

Link to comment
Share on other sites

Yeah, if you set the value of the checkboxes to be the ID of the private message, and make the checkboxes an array, you can use the implode function on the checkbox array, and then use the mysql IN clause to delete them all. More efficient than looping through and doing a separate query for each. Something like:

 

<?php
$ids = implode(",",$_POST['checkboxes'];//assuming numerical IDs. If alphanumeric, use "','" as glue. 
mysql_query("DELETE FROM `yourtable` WHERE `id` IN ($ids)")or die(mysql_error());

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.