Ver Mensaje Individual
  #16 (permalink)  
Antiguo 23/09/2010, 01:49
ommm
 
Fecha de Ingreso: septiembre-2010
Mensajes: 92
Antigüedad: 14 años, 2 meses
Puntos: 1
Respuesta: Eliminar un registro php de la fila

Me sigue sin encontrar variable.........

Código PHP:
<?php 
  
if (empty($_GET['id'])==false
  { 
    
$id $_GET['id']; 
    
//Conectamos con la base de datos 
   
$link mysql_connect("*");
    
mysql_select_db("coches"$link);

    
$sql "DELETE from bookings WHERE id='$id'".mysql_real_escape_string($id)."'";   
    
$result mysql_query($sql); 
    echo 
"registro eliminado"
  } 
  else 
  { 
    echo 
"no hay variable en id"
  } 
?>
y otro

Código PHP:
$result mysql_query("SELECT id, the_date, salida, destino FROM bookings where  correo='" $_POST['correo'] . "' ORDER BY the_date ASC LIMIT 10"$link);
$id $_GET['id'];
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"