比如你使用的數據庫usrname/passwd為root/123456,database為test,新建了一個表為albums,有列artist,則最簡單的代碼實現如下:
專業領域包括成都網站設計、成都做網站、商城網站定制開發、微信營銷、系統平臺開發, 與其他網站設計及系統開發公司不同,創新互聯的整合解決方案結合了幫做網絡品牌建設經驗和互聯網整合營銷的理念,并將策略和執行緊密結合,為客戶提供全網互聯網整合方案。
?php
if (isset($_POST["name"])) {
$conn = mysql_connect("localhost", "root", "123456") or die(mysql_error());
$select_db = mysql_select_db("test", $conn) or die(mysql_error());
$sql = 'select * from albums where artist = "' . $_POST["name"] . '"';
$rs = mysql_query($sql);
if ($rs) {
if (mysql_num_rows($rs) 0) {
$sql = 'delete from albums where artist = "' . $_POST["name"] . '"';
echo $sql;
echo "br";
$rs = mysql_query($sql);
if ($rs) {
echo $_POST["name"] . " delete successfully";
} else {
echo "delete fail: " . mysql_error();
}
} else {
echo "the name " . $_POST["name"] . " no exist in this database";
}
} else {
echo 'mysql fail: ' . mysql_error();
}
mysql_close($conn);
}
?
htmlhead
meta http-equiv="content-type" content="text/html;charset=utf-8"
/head
body
form enctype="multipart/form-data" action="test.php" method="POST"
label查詢名字/label
input type="text" name="name" /
input type="submit" value="從數據中查詢并刪除"
/form
/body
/html
array_splice函數可以刪除數組中的元素(只是該函數的功能之一),array_splice用法如下:
array_splice — 把數組中的一部分去掉并用其它值取代
1
array array_splice( array $input, int $offset[, int $length = 0 [, mixed $replacement ]] )
把 input 數組中由offset 和 length指定的單元去掉,如果提供了 replacement 參數,則用其中的單元取代。
input:輸入的數組。
offset:如果 offset 為正,則從 input數組中該值指定的偏移量開始移除。如果 offset為負,則從 input 末尾倒數該值指定的偏移量開始移除。
length:如果省略 length,則移除數組中從offset到結尾的所有部分。
如果指定了 length并且為正值,則移除這么多單元。
如果指定了 length并且為負值,則移除從 offset 到數組末尾倒數length 為止中間所有的單元。
小竅門:當給出了replacement 時要移除從 offset到數組末尾所有單元時,用count($input) 作為 length。
replacement:如果給出了 replacement 數組,則被移除的單元被此數組中的單元替代。
示例,刪除數組$inputArr的第5~10個元素(從0開始數,包括第5個和第10個,共6個元素)
array_splice($inputArr,5,6);
$conn=new mysqli('localhost','root','pwd','database');//連接數據庫
$conn-query("mysql命令");//執行數據庫命令
$result=$conn-query("select * from table where name=' ' and password=' '");
$row=$result-fetch_array();//得到查詢結果
if($row!=null){
$isok=$conn-query("delete * from table where name=' ' and password=' '");
}
echo $isok==1?"刪除成功":"刪除失敗";//三元表達式,可以用if else代替
文章名稱:php刪除數據庫指定成員,php數據庫刪除數據
文章網址:http://vcdvsql.cn/article8/hsdsip.html
成都網站建設公司_創新互聯,為您提供網站內鏈、定制網站、企業建站、App設計、、手機網站建設
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯