我使用input[type="button"]
. 我的问题是,我想使用它删除数据库中的数据type="button"
,但我对使用它感到困惑。我出于某种原因使用了这个按钮。
这是我的代码。
<html>
<head>
<script type="text/javascript">
function del()
{
window.location.href='recdelete.php';
}
</script>
</head>
......
......
while ( $field = $count->fetch( PDO::FETCH_OBJ ) )
{
echo '<tr>';
echo '<td>'.$field->fld1.'</td>';
echo '<td><input type="button" name="delete" value="Delete" onclick="del()"></input></</td>';
echo '</tr>';
}
在我的recdelete.php
我不知道如何删除这个特定的记录。你能给我一些指示吗?谢谢你。