halo, i am the newbie here. I got sumting to ask regarding the approvement and deletion for my database.
I'd created a database, and the database contain data that need approval and delete from the admistrator. I use looping to retrieve all the data. PHP code as shown below:
while($row = mysql_fetch_array($result)){
echo "<tr><td>";
echo $row['username'];
echo "</td><td>";
echo $row['password'];
echo "</td><td>";
echo $row['amount'];
echo "</td><td>";
echo $row['specification'];
echo "</td><td>";
echo "<br />";
}
so each time i loop through the data, i need either a checkbox or radio button so that admin can have an action towards the data. Then the selected data will be pass to another table as well. How can i implement such things? may i need guidance from experts here? thank you