国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

資料庫資訊與代碼

資料庫展示:

sql執(zhí)行:

CREATE TABLE `user` (

?`id` int( 4) NOT NULL auto_increment,

?`username` varchar(33) NOT NULL,

?`password` varchar(33) NOT NULL,

?PRIMARY KEY (`id` )

) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

微信圖片_20180227163625.png

所需的程式碼檔案:

微信圖片_20180227164115.png

#register.html:

<!DOCTYPE html>
 <html lang="en">
 <head>
 <meta charset="UTF-8">
 <title>Title</title>
 </head>
 <body>
 <hr size="1">
 <form action="add.php" method="post" >
    用戶:<input type="text" name="username"/><br>
    密碼:<input type="password" name="password" /><br>
    確認(rèn)密碼:<input type="password" name="repassword" /><br>
    <input type="submit" name="register" value="注冊">
 </form>

#add.php:

<?php
/**
 * Created by PhpStorm.
 * User: Administrator
 * Date: 2018/2/27 0027
 * Time: 上午 11:06
 */
header('Content-type:text/html;charset=utf-8');
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
    if (empty($_POST['username'])){
        echo "<script>alert('用戶名不能為空!');location.href='login.html';</script>";
    }else {
        $username = $_POST['username'];
    }
    if (empty($_POST['password'])){
        echo "<script>alert('密碼不能為空!');location.href='login.html';</script>";
    }else{
        $password = $_POST['password'];
    }
    if (empty($_POST['repassword'])){
        echo "<script>alert('確認(rèn)密碼不能為空!');location.href='login.html';</script>";
    }else{
        $repassword = $_POST['repassword'];
    }
    if ($password != $repassword) {
        echo "<script>alert('兩次輸入密碼不一致!');location.href='login.html';</script>";
    }
}
$mysqli = new mysqli('localhost', 'root', 'root', 'student');
$result = $mysqli->query("SELECT password FROM user WHERE username = "."'$username'");
$rs=$result->fetch_row();
if(!empty($rs)){
    echo "<script>alert('用戶已存在!');location.href='login.html';</script>";
}else {
    $mysqli = new mysqli('localhost', 'root', 'root', 'student');
    $sql = "INSERT INTO user (username,password) VALUES ('$_POST[username]', '$_POST[password]')";
    $rs = $mysqli->query($sql);
    if (!$rs) {
        echo "<script>alert('注冊失??!');location.href='login.html';</script>";
    } else {
        echo "<script>alert('注冊成功!返回登錄頁面');location.href='login.html';</script>";
    }
}

login. html:

<!DOCTYPE html>
 <html lang="en">
 <head>
 <meta charset="UTF-8">
 <title>Title</title>
 </head>
 <body>
 <hr size="1">
 <form action="success.php" method="post" >
    用戶:<input type="text" name="username"/><br>
    密碼:<input type="password" name="password" /><br>
    <input type="submit" name='login' value="登錄">
 </form>

success.php:

<?php
/**
 * Created by PhpStorm.
 * User: Administrator
 * Date: 2018/2/27 0027
 * Time: 上午 10:47
 */
header('Content-type:text/html;charset=utf-8');
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
    if (empty($_POST['username'])){
        echo "<script>alert('用戶名不能為空!');location.href='login.html';</script>";
    }else {
        $username=$_POST['username'];
    }
    if (empty($_POST['password'])){
        echo "<script>alert('密碼不能為空!');location.href='login.html';</script>";
    }else{
        $password=$_POST['password'];
    }
}
$mysqli = new mysqli('localhost', 'root', 'root', 'student');
$result = $mysqli->query("SELECT password FROM user WHERE username = "."'$username'");
$rs=$result->fetch_row();
if (!empty($rs)){
    if ($password != $rs[0]) {
        echo "<script>alert('密碼錯(cuò)誤!');location.href='login.html';</script>";
    }else{
        $expire=3600;
        ini_set('session.gc_maxlifetime', $expire);//保存1小時(shí)
        if (empty($_COOKIE['PHPSESSID'])) {
            session_set_cookie_params($expire);
            session_start();
        }else{
            session_start();
            setcookie('PHPSESSID', session_id(), time() + $expire);
        }
        if(isset($_SESSION['username'])){
            exit("您已經(jīng)登入了,請不要重新登入!用戶名:{$_SESSION['username']}---<a href='logout.php'>注銷</a>");
        }else{
            $_SESSION['username']=$_POST['username'];
        }
        echo "<script>alert('登錄成功!');</script><br>";
        echo "您好!{$_SESSION['username']},歡迎回來!";
        echo "<a href='logout.php'>注銷</a>";
    }
}else{
    echo "<script>alert('沒有此用戶!');location.href='login.html';</script>";
}

logout.php:

<?php
/**
 * Created by PhpStorm.
 * User: Administrator
 * Date: 2018/2/27 0027
 * Time: 上午 11:44
 */
header('Content-type:text/html;charset=utf-8');
session_start();
if(isset($_SESSION['username'])){
    session_unset($_SESSION['username']);
    session_destroy();//銷毀一個(gè)會話中的全部數(shù)據(jù)
    setcookie(session_name(),'');//銷毀與客戶端的聯(lián)系
    echo "<script>alert('注銷成功!');location.href='login.html';</script>";
}else{
    echo "<script>alert('注銷失敗!');</script>";
}


#
繼續(xù)學(xué)習(xí)
||
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <hr size="1"> <form action="add.php" method="post" > 用戶:<input type="text" name="username"/><br> 密碼:<input type="password" name="password" /><br> 確認(rèn)密碼:<input type="password" name="repassword" /><br> <input type="submit" name="register" value="注冊"> </form>
提交重置程式碼