Hola a todos he logrado como borrar un registros, ahora solo me falta actualizar registros,alguien me puede dar una luz de como hacerlo?. gracias.
PDT:
pongo los codigos de borrar.
Código PHP:
<html>
<head>
<title>Consulta</title>
</head>
<body>
<H1>
<?php
include("conex.php");
$link=Conectarse();
$result=mysql_query("select * from productos",$link);
?>
</H1>
<TABLE BORDER=1 CELLSPACING=1 CELLPADDING=1>
<TR><TD> <B>Nombre</B></TD> <TD> <B>valor</B> </TD> <TD> <B>Borrar</B> </TD></TR>
<?php
while($row = mysql_fetch_array($result)) {
printf("<tr><td> %s</td><td> %s </td><td><a href=\"proceborpro.php?id=%d\">Borra</a></td></tr>", $row["nombre"],$row["valor"],$row["id"]);
}
mysql_free_result($result);
mysql_close($link);
?>
</table>
</body>
</html>
y aqui donde recibo el id para borrar.
Código PHP:
<?php
include("conex.php");
$link=Conectarse();
$id=$_GET['id'];
mysql_query("delete from productos where id = $id",$link);
header("Location: borrarprod.php");
?>