me dice que la consulta esta vacia.. y ya cambié el codig...
Código PHP:
$link = mysql_connect("*", "*"*");
mysql_select_db("coches", $link);
$result = mysql_query("SELECT id, the_date, salida, destino FROM bookings where correo='" . $_POST['correo'] . "' ORDER BY the_date ASC LIMIT 10", $link);
if ($row = mysql_fetch_array($result)){
echo "<table class='tabla'> n";
echo "<tr> n";
echo "<td class='tit'><b>Fecha</b></td> n";
echo "<td class='tit'><b>Salida</b></td> n";
echo "<td class='tit'><b>Destino</b></td> n";
echo "<td class='tit'><b>Selección</td> \n";
echo "</tr> \n";
while ($row = mysql_fetch_row($result)){
echo "<tr> \n";
echo "<td class='borde'>$row[0]</td> \n";
echo "<td class='borde'>$row[1]</td> \n";
echo "<td class='borde'>$row[2]</td> \n";
echo "<td class='borde'><b><a href='borrar.php?id=$id'>Borrar reserva</a></b></td> \n";
echo "</tr> \n";
y en el borrar.php
Código PHP:
<?php
$link = mysql_connect("*", "*", "*");
mysql_select_db("*", $link);
$id = $_GET['id'];
$sql = mysql_query("DELETE FROM bookings WHERE id=$id");
mysql_query($sql) or die (mysql_error());
?>