首頁  >  文章  >  專題  >  怎樣利用PHP+Mysql實現基本的增刪改查功能? (實例詳解)

怎樣利用PHP+Mysql實現基本的增刪改查功能? (實例詳解)

WBOY
WBOY轉載
2021-12-17 18:47:283999瀏覽

本篇文章我們來看看怎樣利用mysql來實現簡單的增、刪、改、查的功能,其中需要創建多個頁面對資料庫的資料進行處理,希望對大家有幫助!

怎樣利用PHP+Mysql實現基本的增刪改查功能? (實例詳解)

PHP是一種在伺服器端執行的嵌入HTML文件的物件導向、解釋型的腳本語言,語言風格類似c語言。它具有強大的功能,可實現所有的CGI(公共網關接口,伺服器與客戶端程式進行「交談」的一種工具)的功能,並比一般CGI有更快的執行速度。

下面的連接操作是在WAMP平台環境下的。如果有還沒部署環境的小夥伴可以參考下面連結:http://www.imooc.com/learn/54在影片的第二章有詳細講解。

建立資料庫

因為要連接Mysql資料庫,所以這裡我們就先建立一個名叫db_user的資料庫

--创建数据库db_user
create database db_user;
--指定当前数据库为db_user
use db_user;
--用户信息表users
create table users
(
user_id int not null auto_increament primary key,
user_name char(10) not null,
user_psw char(10) not null,
user_sex char(1) not null,
user_age int null,
user_dept int not null,
user_group int not null
);
--部门表dept
create table dept
(
dept_id int not null auto_increment primary key,
dept_name char(20) not null,
dept_leader char(10) not null,
dept_location char(50) not null
);
--用户组表usergroup
create table usergroup
(
group_id int not null auto_increment primary key,
group_name char(20) not null,
group_desc char(50) not null
);
--权限表func
create table func
(
func_id int not null auto_increment primary key,
func_name char(20) not null,
func_link char(20) not null
);
--用户组权限表groupfunc
create table groupfunc
(
id int not null auto_increment primary key,
group_id int not null,
func_id int not null
);
--插入一条测试数据
insert into db_user.users(`user_id`, `user_name`, `user_psw`, `user_sex`, `user_age`, `user_dept`, `user_group`) values (2, '隔壁老王', '2396', '男', 33, 0, 1);

系統實作

所有頁面檔案清單如下:

怎樣利用PHP+Mysql實現基本的增刪改查功能? (實例詳解)

接下來,就一步一步講解各頁面文件的功能與實作。

1.主頁

建立系統的主頁面檔案index.html,實作程式碼如下:

<html>
<head>
<title>一个简单用户管理系统实例</title>
</head>
<body>
<h2>用户管理系统</h2>
<h3>用户管理</h3>
<a href="add_user.php">添加用户</a><br/>
<a href="show_user.php">查看用户</a>
<h3>部门管理</h3>
<a href="add_dept.php">添加部门</a><br/>
<a href="show_dept.php">查看部门</a>
<h3>用户组管理</h3>
<a href="add_usergroup.php">添加用户组</a><br/>
<a href="show_usergroup.php">查看用户组</a>
<h3>权限管理</h3>
<a href="add_fun.php">添加权限</a><br/>
<a href="show_fun.php">查看权限</a>
</body>
</html>

效果:

怎樣利用PHP+Mysql實現基本的增刪改查功能? (實例詳解)

2.公用程式碼模組

新common.php文件,程式碼如下,用以連接資料庫伺服器,這裡我們把連接資料庫的操作封裝成一個公共程式碼模組,在下面各頁面檔案中透過 引入,這樣就不用重複編寫連接程式碼了。

<?php
$con=mysql_connect("localhost:3306","root","642765") or die("数据库服务器连接失败!<br>");
mysql_select_db("db_user",$con) or die("数据库选择失败!<br>");
mysql_query("set names &#39;gbk&#39;");//设置中文字符集
?>

在PHP中,可以使用下面兩種函數來建立與Mysql資料庫伺服器的連接,

mysql_connect():建立非持久連接

mysql_pconnect():建立持久連接

此處建立的是非持久連接。

3.各頁面的設計與實作

新增使用者

新增使用者的web頁面檔案add_user.php的實作程式碼如下:

<?php require_once "common.php";?>
<html>
<head>
<title>添加用户</title>
</head>
<body>
<h3>添加用户</h3>
<form id="add_user" name="add_user" method="post" action="insert_user.php">
用户姓名:<input type="text" name="user_name"/><br/>
用户口令:<input type="text" name="user_psw"/><br/>
用户性别:<input type="text" name="user_sex"/><br/>
用户年龄:<input type="text" name="user_age"/><br/>
所属部门:<select name="show_user_name">
<?php
$sql="select * from dept";
$result=mysql_query($sql,$con);
while($rows=mysql_fetch_row($result)){
echo "<option value=".$rows[0].">".$rows[1]."</option>";
}
?>
</select><br/>
用户组名:<select name="user_group">
    <?php
    $sql="select * from usergroup";
    $result=mysql_query($sql,$con);
    while($rows=mysql_fetch_row($result)){
        echo "<option value=".$rows[0].">".$rows[1]."</option>";
    }
    ?>
    </select><br/>
    <br/>
<input type="submit" value="添加"/>
</form>
</body>
</html>

然後,將程式部署在已開啟的wamp平台環境中,並在瀏覽器中輸入「http://localhost:連接埠號碼/檔案路徑”,即可查看效果。大家從網址可能已經發現我的連接埠號碼為8080,這是我自訂的,預設的連接埠號碼是80(這時就可以不用寫入連接埠號碼,直接localhost)。

效果:

怎樣利用PHP+Mysql實現基本的增刪改查功能? (實例詳解)

當新增成功後,頁面會自動跳到下面的web頁面

怎樣利用PHP+Mysql實現基本的增刪改查功能? (實例詳解)

查看使用者

查看使用者的web頁面檔案show_user.php的實作程式碼如下,可以透過指定使用者名稱或使用者所屬部門來查看該用戶的全部個人資訊。

<?php require_once "common.php";?>
<html>
<head><title>查看用户</title>
</head>
<body>
<h3>查看用户</h3>
<form id="show_user" name="show_user" method="post" action="select_user.php">
用户姓名:<input type="text" name="show_user_name"/><br/>
所属部门:<select name="show_user_dept">
<option value=0>所有部门</option>
<?php
$sql="select * from dept";
$result=mysql_query($sql,$con);
while($rows=mysql_fetch_row($result)){
echo "<option value=".$rows[0].">".$rows[1]."</option>";
}
?>
</select><br/>
<br/>
<input type="submit" value="查看"/>
</form>
</body>
</html>

效果:

怎樣利用PHP+Mysql實現基本的增刪改查功能? (實例詳解)

點擊檢視按鈕,即會跳到下面頁面

怎樣利用PHP+Mysql實現基本的增刪改查功能? (實例詳解)

從圖中可以看出,在該使用者的檢視結果頁面中包含了執行修改該使用者和刪除該使用者操作的超連結入口,分別對應change_user.php和delete_user.php檔案。

修改使用者

修改使用者的web頁面檔案change_user.php的實作程式碼如下:

<?php require_once "common.php";?>
<html>
<head><title>修改用户</title>
</head>
<body>
    <h3>修改用户</h3>
    <form id="add_user" name="add_user" method="post" action="update_user.php?user_id=
        <?php echo trim($_GET[&#39;user_id&#39;]);?>" >
    用户姓名:<input type="text" name="user_name"/><br/>
    用户口令:<input type="text" name="user_psw"/><br/>
    用户性别:<input type="text" name="user_sex"/><br/>
    用户年龄:<input type="text" name="user_age"/><br/>
    所属部门:<select name="user_dept">
    <option value=0>请选择部门</option>
    <?php
    $sql="select * from dept";
    $result=mysql_query($sql,$con);
    while($rows=mysql_fetch_row($result)){
        echo "<option value=".$rows[0].">".$rows[1]."</option>";
    }
    ?>
    </select><br/>
用户组名:<select name="user_group">
    <option value=0>请选择用户组</option>
    <?php
    $sql="select * from usergroup";
    $result=mysql_query($sql,$con);
    while($rows=mysql_fetch_row($result)) {
        echo "<option value=".$row[0].">".$rows[1]."</option>";
    }
    ?>
    </select><br/>
<br/>
<input type="submit" value="修改用户信息"/>
</form>
</body>
</html>

怎樣利用PHP+Mysql實現基本的增刪改查功能? (實例詳解)

當在上面頁面中輸入完新的使用者資訊後,點選按鈕,即可呼叫應用層中用於執行修改使用者操作的業務邏輯處理程式碼update_user.php,該程式碼內容如下:

<?php require_once "common.php";
$user_id=trim($_GET[&#39;user_id&#39;]);
$user_name=trim($_POST[&#39;user_name&#39;]);
$user_psw=trim($_POST[&#39;user_psw&#39;]);
$user_sex=trim($_POST[&#39;user_sex&#39;]);
$user_age=trim($_POST[&#39;user_age&#39;]);
$user_dept=trim($_POST[&#39;user_dept&#39;]);
$user_group=trim($_POST[&#39;user_group&#39;]);
$sql="UPDATE users SET user_name=&#39;".$user_name."&#39;,user_psw=&#39;".$user_psw."&#39;,user_sex=&#39;".$user_sex."&#39;,user_age=&#39;".$user_age."&#39;,user_dept=&#39;".$user_dept."&#39;,user_group=&#39;".$user_group."&#39;  WHERE user_id=";
$sql=$sql.$user_id;
if(mysql_query($sql,$con))
    echo "用户修改成功!<br>";
else
    echo "用户修改失败!<br>";
?>

刪除用戶

在用戶查看結果頁面中,有個刪除用戶的超鏈接,點擊即可調用下面的邏輯處理代碼delete_user .php,從而實現對目前使用者的刪除。

<?php require_once "common.php";?>
<html>
<head><title>删除用户</title>
</head>
<body>
    <?php
    $user_id=trim($_GET[&#39;user_id&#39;]);
    $sql="DELETE FROM users WHERE user_id=";
    $sql=$sql.$user_id;
    if(mysql_query($sql,$con))
        echo "用户删除成功!<br>";
    else
        echo "用户删除失败!<br>";
    ?>
</body>
</html>

當刪除成功後,會跳到下面頁面

怎樣利用PHP+Mysql實現基本的增刪改查功能? (實例詳解)

#

大家如果有興趣的話,可以點選《PHP影片教學》進行更多關於PHP知識的學習。

以上是怎樣利用PHP+Mysql實現基本的增刪改查功能? (實例詳解)的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:csdn.net。如有侵權,請聯絡admin@php.cn刪除