Hi i had a big database and need to delete and add to it daily. About 500 rows are there in that table. I add add a check box in every row ( in the output page ) .. Something like this
<table>
<?php
$select=select * from table ;
while($row=mysql_fetch_array($select)){;
?>
////// result will come here. Each row contains a check box with a value "id" . Which is from the column id from the database ..and name from 1,2,3....
<?php } ?>
</table>
Now i need to check multiple check boxes and press delete button in the php page. Then the values posted to "process.php" and then delete the rows with "id" s of checked....
I tried many but ...
Please any one help me....
Thanks
Rajeesh