dirty_snow 2022-04-25 11:48 采纳率: 50%
浏览 49
已结题

php连接数据库实现登录效果显示失败

环境是用phpstudy_pro这个,软件是用的phpstorm,数据库是localhost的

点登录后,显示: 登录失败

<?php
header("Content-Type:text/html;charset=utf-8");
$username = trim($_POST['username']);
$pw = trim($_POST['pw']);
//进行必要的验证
if (!strlen($username) || !strlen($pw) ){
    echo"<script>alert('用户名和密码都必须要填写');history.back();</script>";
    exit;
}else {
    if (!preg_match('/^[a-zA-Z0-9]{3,10}$/', $username)) {
        echo "<script>alert('用户名必填,且只能由大小字符和数字构成,长度为3到10个字符!');history.back();</script>";
        exit;
    }
    if (!preg_match('/^[a-zA-Z0-9_*]{6,10}$/', $pw)) {
        echo "<script>alert('密码必填,且只能大小写字符和数字,以及*、_构成,长度为6-10个字符!');history.back();</script>";
        exit;
    }
}
//连接数据库
//第一步,连接到数据库
$conn = mysqli_connect("localhost","root","20031022","member");

//第二步,设置字符串
mysqli_query($conn,"set names utf8");

$sql = "select * from info where username = '".$username."' and pw ='“.md5($pw).“'";
$result = mysqli_query($conn,$sql);
$num = mysqli_num_rows($result);
if($num){
    echo "<script>alert('登录成功!')</script>";
}else{
    echo "<script>alert('登录失败!');history.back();</script>";
}

  • 写回答

2条回答 默认 最新

  • 浪客 2022-04-25 12:01
    关注
    
    $sql = "select * from info where username = '".$username."' and pw ='“.md5($pw).“'";
    .md5($pw) 两边是中文引号了。
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

问题事件

  • 系统已结题 5月3日
  • 已采纳回答 4月25日
  • 创建了问题 4月25日

悬赏问题

  • ¥30 matlab appdesigner私有函数嵌套整合
  • ¥15 给我一个openharmony跑通webrtc实现视频会议的简单demo项目,sdk为12
  • ¥15 vb6.0使用jmail接收smtp邮件并另存附件到D盘
  • ¥30 vb net 使用 sendMessage 如何输入鼠标坐标
  • ¥15 关于freesurfer使用freeview可视化的问题
  • ¥100 谁能在荣耀自带系统MagicOS版本下,隐藏手机桌面图标?
  • ¥15 求SC-LIWC词典!
  • ¥20 有关esp8266连接阿里云
  • ¥15 C# 调用Bartender打印机打印
  • ¥15 我这个代码哪里有问题 acm 平台上显示错误 90%,我自己运行好像没什么问题