No utilices short tags que estan en desuso.
-<? no, <?php si
Veamos, en tu página donde tienes el enlace tienes que tener esto:
Código PHP:
Ver originalecho "<td class='tit'><b><a href='borrar.php?id=$id'>Borrar reserva</a></b></td> \n";
Y luego en borrar.php esto otro:
Código PHP:
Ver original$id = $_GET['id'];
$sql = "DELETE FROM bookings WHERE id=$id";
De esta manera se borrara. Comprueba antes que $id este recibiendo algún valor.
Saludos,