Te voy a decir por encima como lo haria yo pero asi a ojo que conste...
Algo me fallara y o algo se me olvidara jejej
Código PHP:
<?php
include "conexion.php";
if (isset ($_GET["id"])){
$id= $_GET["id"];
mysql_query("Delete * From usuarios WHERE id = ".$id." ");
}
$query = "SELECT * FROM usuarios ORDER BY nombre ";
$result = mysql_query ($query);
$num_results = mysql_num_rows ($result);
for ($i=0; $i<$num_results; $i++){
$row = mysql_fetch_array ($result);
$campo1=stripslashes ($row[0]); //vamos a tener en cuenta que este campo es el id
$campo2=stripslashes ($row[1]);
// .....
?>
<table>
<tr>
<th> campo1 </th>
<th> campo2 </th>
</tr>
<?php
echo '<tr>';
echo '<td>';
echo $campo1;
echo '</td>';
echo '<td>';
echo $campo2;
echo '</td>';
echo '<td>';
?>
<input type="button" onclick="location.href='estapagina.php?id=<?php echo $campo1; ?>'" value="eliminar" />
<?php
echo '</td>';
echo '</tr>';
}
?>
<table>