Есть база данных
Есть
list.php<table class="table">
<tr>
<th>Name</th>
<th>Username</th>
<th>Email</th>
<th>Действие</th>
</tr>
<? while ($data = mysql_fetch_array($zapros)):?>
<tr>
<td><? echo $data['name'];?></td>
<td><? echo $data['username'];?></td>
<td><? echo $data['mail'];?></td>
<td>
<form method="post" action="remove.php">
<button type="submit" id="<?=$data['id']; ?>" class="btn btn-danger">
<span class="glyphicon glyphicon-remove"></span></button></form>
<form method="post" action="update.php">
<button type="submit" id="<? $data['id']; ?>" class="btn btn-default">
<span class="glyphicon glyphicon-pencil"></span>
</button>
</td>
</form>
</tr>
<? endwhile;?>
</table>
И есть
remove.phpinclude "../connect.php";
$id = $_POST['id'];
$query = "DELETE FROM test_table WHERE id='$id'";
mysql_query($query);
mysql_query($query) or die($query . '<br />' . mysql_error());
Я хочу удалить,например,3 строку по нажатию кнопки с крестиком.
Как это организовать? Спасибо.
UPD: Дело в том,что не передается id