PHP開發企業網站教學之添加管理員

上節我們已經把資訊從資料庫取出,並展示了顯示頁面

從上節的程式碼中可以看到,我們點擊新增管理員,提交到addu.php這個頁面上

我們來看這個頁面的程式碼

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>添加管理员</title>
    <style type="text/css">
        .ipt{width:180px;height:30px;border-radius:5px;
            outline:none;border:1px solid #eee;box-sizing:border-box;padding-left:15px;}
        .sub{width:50px;height:20px;border:1px solid #eee;background:#eee;color:#ff7575;}
    </style>
</head>
<body>
    <form method="post" action="adduser.php">
        用户名:<input type="username" name="username" class="ipt"></br></br>
        密&nbsp;码:<input type="password" name="password" class="ipt"></br></br>
        <input type="submit" value="添加" class="sub">
    </form>
</body>
</html>

看如上程式碼,可以看出,表單是以post 的方式提交到adduser.php 這個檔案

下面我們來看下adduser.php 這個檔案的程式碼,然後分析下程式碼:

<?php
    //添加管理员部分代码,注意,当数据库存在该管理员账户时,不允许添加
    require_once('conn.php');
    $name = $_POST['username'];
    $password = md5($_POST['password']);

    $sql1 = "select * from user where username ='$name'";
    $info = mysql_query($sql1);
    $res1 = mysql_num_rows($info);
    if($res1){
        echo "<script>alert('管理员已存在');location.href='addu.php';</script>";
    }else{
        $sql  = "insert into `user`(username,password) values('$name','$password')";
        $res = mysql_query($sql);
        if($res){
            echo "<script>alert('添加管理员成功');location.href='user.php';</script>";
        }else{
            echo "<script>alert('添加管理员失败');history.go(-1);</script>";
        }
    }
?>

首先我們也是要連結資料庫,然後接收表單提交過來的資訊

之後我們要進行判斷表單提交的使用者是否存在,如果存在,給予提示,不存在,可以新增

如上程式碼所示,這樣我們就完成了管理員新增的功能

#
繼續學習
||
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>添加管理员</title> <style type="text/css"> .ipt{width:180px;height:30px;border-radius:5px; outline:none;border:1px solid #eee;box-sizing:border-box;padding-left:15px;} .sub{width:50px;height:20px;border:1px solid #eee;background:#eee;color:#ff7575;} </style> </head> <body> <form method="post" action="adduser.php"> 用户名:<input type="username" name="username" class="ipt"></br></br> 密 码:<input type="password" name="password" class="ipt"></br></br> <input type="submit" value="添加" class="sub"> </form> </body> </html>
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!