PHP連線資料庫 通過下拉列表及具體條件查詢資料

2021-07-23 13:22:22 字數 748 閱讀 5824

<?php	

/* report all errors except e_notice */

error_reporting(e_all^e_notice);//去除notice級別的錯誤,因為當進入頁面時,表單中是沒有資料的,他會出現notice錯誤,提示表單中沒有資料,所以我們把這個錯誤忽略掉。

$link=mysql_connect('localhost','root','sdutlab507labsdut')or die("資料庫連線失敗");

//連線資料庫

mysql_select_db('sdut',$link);//選擇資料庫

//mysql_query("set names utf8");//設定編碼格式

$q="select * from sduttable";//設定查詢指令

$result=mysql_query($q);//執行查詢

if($_post[condition]=="")

}else if($_post["select"]=="姓名")//下拉列表提交的值,下同

}else }}

else if($_post["select"]=="班級")

}else }}

else if($_post["select"]=="學號")

}else }}

else if($_post["select"]=="分數")

}else }}

?>

php通過mysqli連線資料庫

資料庫連線八步曲 1 連線資料庫 連線 mysqli connect 2 成功與否判斷 連線錯誤號 mysqli connect errno 連線錯誤資訊 mysqli connect error 3 選擇資料庫 選擇庫 mysqli select db 執行錯誤號 mysqli errno 執行錯...

ztree連線資料庫,實現下拉列表

document ready function ztree實現下拉列表 var setting 通過查詢area確定區域,根據區域id確定下面的部門 將資料庫裡面的部門資訊查詢出來,迴圈顯示出來 獲取區域id和區域名稱 var arr areaid array var arr areaname ar...

php連線資料庫

create table message id tinyint 1 not null auto increment,user varchar 25 not null,title varchar 50 not null,content tinytext not null,lastdate date n...