美文网首页
8.28php自学连接数据库+搭建后台页面

8.28php自学连接数据库+搭建后台页面

作者: 刘宇龙 | 来源:发表于2016-09-12 10:17 被阅读0次

    <?php
    // 1:链接MySQL
    mysql_connect('localhost','root','root');
    // 2:选择一个要操作的数据库
    mysql_select_db('cms');
    // 3:设置字符集
    mysql_set_charset('utf8');
    ?>
    后台页面对接数据库:
    <?php
    header("content-type:text/html;charset=utf-8");
    // echo '<pre>';
    // 开启session
    session_start();
    $username=$_POST['username'];
    $pwd=md5($_POST['pwd']);
    $vcode=strtolower($_POST['vcode']);

    // 引入数据库配置文件
    include '../config.php';
    // 2:定义sql语句
    $sql="select * from web_user where username='$username'";
    // 3:发送sql语句,接收反馈
    $result=mysql_query($sql);
    // 4:将返回值以索引数组形式显示
    $row=mysql_fetch_assoc($result);
    // var_dump($row);
    // exit();

    if($vcode==strtolower($_SESSION['vcode'])){
    if($username==$row['username'] && $pwd==$row['userpwd']){
    echo '<script>alert("登录成功!");window.location="indexed.php"</script>';
    }else{
    echo '<script>alert("帐号密码不匹配,请重新输入!");window.location="index.php"</script>';
    }
    }else{
    echo '<script>alert("验证码不正确,请重新输入!");window.location="index.php"</script>';
    }

    相关文章

      网友评论

          本文标题:8.28php自学连接数据库+搭建后台页面

          本文链接:https://www.haomeiwen.com/subject/fryxettx.html