I am trying to add a delete button on each row so that I can delete a record when the button is pressed. But the delete function doesn't work and shows "Error deleting record". I don't know where the problem is.
Please help me. Any help would be appreciated.
Here is my code:
managetimetable.php
<?php
include("include/config.php");
$sql = "SELECT * FROM `time_table`";
$query = mysqli_query($link,$sql) or die(mysqli_error($link));
?>
<table width="70%" cellpadding="5" cellspacing="5">
<tr>
<th><strong>ID</strong></th>
<th><strong>Image</strong></th>
<th></th>
</tr>
<?php while ($row = mysqli_fetch_array($query)) : ?>
<tr>
<td><?php echo $row['t_id']; ?></td>
<td><?php echo $row['t_name']; ?></td>
<td><a href='delete.php?id=".$row['t_id']."'>Delete</a></td>
</tr>
<?php endwhile; ?>
</table>
delete.php
<?php
$id = $_GET['id'];
include("include/config.php");
$sql = "DELETE FROM time_table WHERE t_id = $id";
if (mysqli_query($link, $sql)) {
mysqli_close($link);
header('Location: index.php');
exit;
} else {
echo "Error deleting record";
}
?>
config.php
<?php $link=mysqli_connect("localhost","root","","course_registration_system"); ?>
My database: Time_table
t_id t_name t_image
8 course_offered_2017.jpg [BLOB - 246.1 KiB]
9 time_table_2017.jpg [BLOB - 446.4 KiB]