Jump to content

Recommended Posts

hey guys,

 

 

on my site i have a comments section, as an admin feature i want to be able to delete comments via a checkbox beside each comment.

 

so at the moment, i have:

<input type="checkbox" name="delete" value="2">    //2 == comment number

 

<?php $checkDelete = $_POST['delete']; ?>  //gets value of 'delete'

but the problem with this is that if i have multiple check boxes checked, $checkDelete will only be the last value it finds, whereas i  need it to retreve all the checkbox values.

 

 

can anyone think of a way this could be done

thanks

Link to comment
https://forums.phpfreaks.com/topic/189900-multi-checkboxes/
Share on other sites

Name you check boxes as delete[]

<input type="checkbox" name="delete[]" value="2">

 

This will make the $_POST['delete'] variable hold an array of selected checkboxes.

 

Now use the following code to delete the comments that are selected

if(is_array($_POST['delete']))
{
    $ids = implode(',', $_POST['delete']);

     $sql = 'DELETE FROM comments_table WHERE id IN('.$ids.')';
     mysql_query($sql);
}

Link to comment
https://forums.phpfreaks.com/topic/189900-multi-checkboxes/#findComment-1002032
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.