ホームページ >バックエンド開発 >PHPチュートリアル >PHPはテーブル内のレコードを削除します
PHP はテーブル内のレコードを削除します
皆さん、こんにちは。これが PHP の弱い文化革命の問題に初めて触れたものです。<script language="javascript" > function Delete11(var id) { ................. }</script><form action="delete.php" method = "post"> <table border = "1" cellpadding = "3" align = "center"> <tr> <th>编号</th> <th>商品名称</th> <th>商品货号</th> <th>商品价格</th> <th>促销价</th> <th>操作</th> </tr> <?php include ('..\Conn\ConnectionDB.php'); $sql = "select *from products"; $result = mysql_query($sql); $row = mysql_fetch_row($result); while ($row){ ?> <tr> <td><?php echo $row[0]?></td> <td><?php echo $row[3]?></td> <td><?php echo $row[2]?></td> <td><?php echo $row[11]?></td> <td><?php echo $row[12]?></td> <td><button onclick = Delete11(<?php echo $row[0]?>)>删除</button></td> </tr> <?php $row = mysql_fetch_row($result);} ?> </table></form>
js は必要ありません
b6c5a531a458a2e790c1fd6421739d1cc811e6d8ad59c3e24a9294b32e7cf0e3'>Delete03a021a4ff00c5bd3b2b8f200ca5ac6b
js を使用します
b6c5a531a458a2e790c1fd6421739d1c3c9de4ee0e945e2e4ebbc3a3419cc074)>削除65281c5ac262bf6d81768915a4a77ac0b90dd5946f0946207856a8a37f441edf function Delete11(id) {
location = 'delete.php?id='+id; }
js は必要ありません
b6c5a531a458a2e790c1fd6421739d1cc811e6d8ad59c3e24a9294b32e7cf0e3'> ;削除5db79b134e9f6b82c0b36e0489ee08edb90dd5946f0946207856a8a37f441edf
js を使用します
b6c5a531a458a2e790c1fd6421739d1c3c9de4ee0e945e2e4ebbc3a3419cc074 )>Delete65281c5ac262bf6d81768915a4a77ac0 b90dd5946f0946207856a8a37f441edf
function Delete11(id) {
location = 'delete.php?id='+id
xu バージョンは実際にどこにでもあります
主キーを渡しますjs を介してサーバーに id を送信し、サーバーはパラメーターを受け取り、sql delete * from table where id =? を実行します。