i have this code so far, would I have to put the code for the delete in a separate PHP file?
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['userID'] . "</td>";
echo "<td>" . $row['FirstName'] . "</td>";
echo "<td>" . $row['Surname'] . "</td>";
echo "<td>" . $row['Email'] . "</td>";
echo "<td>" . "<a href='delete.php'>Delete</a>" . "</td>";
echo "</tr>";
}
echo "</table>";


Sign In
Create Account


Back to top









