Bạn phải chuyển biến trong liên kết xóa. Bạn phải nhập <?php echo $contact['name']; ?>
giá trị tên trong trường ẩn hoặc chuyển giá trị này vào URL
Thay thế
<td class="contact-delete">
<form action='delete.php' method="post">
<input type="hidden" name="name" value="">
<input type="submit" name="submit" value="Delete">
</form>
</td>
Với
<td class="contact-delete">
<form action='delete.php?name="<?php echo $contact['name']; ?>"' method="post">
<input type="hidden" name="name" value="<?php echo $contact['name']; ?>">
<input type="submit" name="submit" value="Delete">
</form>
</td>