php 刪除記錄實現代碼

來源:互聯網
上載者:User

複製代碼 代碼如下:<?php
@mysql_connect("localhost", "root","1981427") //選擇資料庫之前需要先串連資料庫伺服器
or die("資料庫伺服器串連失敗");
@mysql_select_db("test") //選擇資料庫mydb
or die("資料庫不存在或不可用");
$query = @mysql_query("select * from tablename1") //執行SQL語句
or die("SQL語句執行失敗");
echo "<form method='post' name='form1' action='delete_do.php'>";
echo "<table border=1>";
//通過迴圈的方式輸出從第0行到最大的一行的所有記錄
for($i=0; $i<mysql_numrows($query); $i++)
{
$id = mysql_result($query, $i, 'id'); //輸出第$i行的serial_no列
$username = mysql_result($query, $i, 'username'); //輸出第$i行的name列
$password = mysql_result($query, $i, 'password'); //輸出第$i行的salary列
echo "<tr>";
echo "<td><input type='checkbox' name='chk[]' value='$id'></td>";
echo "<td>$id</td>";
echo "<td>$username</td>";
echo "<td>$password</td>";
echo "</tr>";
}
echo "<tr>";
echo "<td colspan=4 nowrap><input name='Submit' type='submit' value='提交'>";
echo "<input type='reset' name='Reset' value='重設'></td>";
echo "</tr></table></form>";
?> 複製代碼 代碼如下:<?php
@mysql_connect("localhost", "root","1981427") //選擇資料庫之前需要先串連資料庫伺服器
or die("資料庫伺服器串連失敗");
@mysql_select_db("test") //選擇資料庫mydb
or die("資料庫不存在或不可用");
foreach($_POST['chk'] AS $check)
{
$query = mysql_query("delete from tablename1 where id = $check");
if($query)
echo "刪除成功";
else
echo "刪除失敗";
}
mysql_close();
?>
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.