i want to delete some data by checked the checkbox and at the sametime i want to insert the data into another table(like want to backup the deleted data)..have any idea?
this is the code for 'delete' part:
<?php
include 'conn.php';
$delete_ids = implode(",",$_POST['delete']);
$sql = "DELETE FROM db_user WHERE id IN ($delete_ids)";
mysql_query($sql);
?>