Hola,
Tengo un formulario php con el cual puedo ingresar los regitros a la base de datos y tambien puedo ver los registros que he ingresado.
Ahora me gustaria borrar los registros, pues para esto estaba siguiendo este tutorial: http://www.webestilo.com/php/php07e.phtml
Pues después de cambiar unas quantas linias he adoptado el codigo a mi formulario y a mi base de datos, me sale una columna para borrar cada fila, pero cuando pincho en ella NO PASA NADA.
Aquí os paso el pantallazo de mi pagina:
http://www.megaupload.com/?d=LB4WDPC2
Este es mi código:
-----------------------index.php---------------------------
<html>
<link rel="stylesheet" type="text/css" href="estil1.css" />
<title>Biblioteca</title>
<center>
<head><h1>Biblioteca</h1></head>
<body>
<form action="insertar.php">
ISBN:
<input type="text" name="isbn">
</br>
Títol:
<input type="text" name="titol">
</br>
Autor:
<input type="text" NAME="autor">
</br>
Editorial:
<input type="text" name="editorial">
</br>
Gènere:
<input type="text" name="genere">
</br>
Edició:
<input type="text" name="edicio">
</br>
Llengua:
<input type="text" name="llengua">
</br>
Sinposi:
<input type="text" name="sinopsi">
</br>
Pàgines:
<input type="text" name="pagines">
</br>
Any:
<input type="text" name="any">
</br>
</br>
<INPUT TYPE="submit" NAME="accion" VALUE="Desa en la base de dades">
</FORM>
<hr>
<?php
include("connexio.php");
$link=Conectarse();
$result=mysql_query("select * from llibres",$link);
?>
<TABLE BORDER=1 CELLSPACING=1 CELLPADDING=1>
<tr><td> ISBN </td> <td> Títol </td> <td> Autor </td> <td> Editorial </td> <td> Gènere </td> <td> Edició </td> <td> Llengua </td> <td> Sinopsi </td> <td> Pàgines </td> <td> Any </td><td> Borra </td>
</tr>
<?php
while($row = mysql_fetch_array($result)) {
printf("<tr><td> %s</td> <td> %s</td> <td> %s</td> <td> %s</td> <td> %s</td> <td> %s</td> <td> %s</td> <td> %s</td> <td> %s</td> <td> %s</td><td><a href=\"borrarindex.php?id=%d\">Borra</a></td></tr>", $row["ISBN"], $row["Titol"], $row["Autor"], $row["Editorial"], $row["Genere"], $row["Edició"], $row["Llengua"], $row["Sinopsi"], $row["Pàgines"], $row["Any"], $row["ID_Prueba"]);
}
mysql_free_result($result);
mysql_close($link);
?>
</table>
</center>
</body>
</html>
--------------------borrarindex.php-------------------------------
<?php
include("connexio.php");
$link=Conectarse();
$id=$_GET['id'];
mysql_query("delete from llibres where ID_Prueba = $id",$link);
header("Location: index.php");
?>
--------------------------------------------------------------------------------------------
Si alguien ha encontrado algun error pues por favor que me lo diga
Gracias.