Hi,
can i ask some help on how to delete records in database.im using wampserver...
I retrieve all rows and display it on the table which is php code and i want to delete rows if i will click the delete in the table...is this possible?please help me...
<?php
print "<table border='1'>";
while($row = mysql_fetch_array($rlist))
{
print "<tr>";
print "<td>" .$row['firstname']. "</td>";
print "<td>" .$row['lastname']. "</td>";
print "<td>"."delete"."</td>";
print "</tr>";
}
print "</table>";
?>