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
https://forums.phpfreaks.com/topic/75044-solved-multi-private-message-deletion/
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());

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.