Estoy tratando de agregar un botón de eliminación en cada fila para poder eliminar un registro cuando se presiona el botón. Pero la función de eliminación no funciona y muestra "Error al eliminar el registro". No sé dónde está el problema.
Por favor, ayúdame. Cualquier ayuda sería apreciada.
Aquí está mi código:
gestionarhorario.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>borrar.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"); ?>Mi base de datos: 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]