Saludos!
Código PHP:
<?php
include "conexion.php";
if (!isset($accion)){
$result=mysql_query("SELECT * FROM usuarios ORDER BY nombre",
$conexion);
echo"<form name=\"form1\" method=\"post\"action=\"guardar.php?accion=borrar\">
<table width=300>
<tr>
<td><b>Nombre</b></td><td><b>Apellido</b></td><td><b>DNI</b></td>
</tr>";
while($row=mysql_fetch_row($result)){
echo"<tr>
<td>$row[1]</td><td>$row[2]</td><td>$row[3]
<a href=\"ver.php?id=$row[0]\">borrar</a></td><input type=\"submit\" name=\"Submit\" value=\"Guardar Datos\">
</tr></form>";
}
echo"</table>";
}elseif($accion=="borrar"){
$result=mysql_query("Delete * From usuarios WHERE id = $id",$conexion);
echo"
<html>
<body>
<h3 color='#FF00000'>Los registros han sido actualizados</h3>
</body>
</html>";
}
?>