这篇文章主要介绍了php实现的简单检验登陆类,可实现基本的php数据库查询及密码匹配的功能,需要的朋友可以参考下
本文实例讲述了php实现的简单检验登陆类。分享给大家供大家参考。具体如下:
name=$username; $this->pwd=$password; } function checkinput() { global $db; $sql="select * from tb_manager where name='$this->name' and pwd='$this->pwd'"; $res=$db->query($sql); $info=$db->fetch_array($res); if($info['name']==<strong style="color:transparent">来源gaodai#ma#com搞@@代~&码网</strong>$this->name and $info['pwd']==$this->pwd) { $_SESSION[admin_name]=$info[name]; $_SESSION[pwd]=$info[pwd]; echo ""; } else { echo ""; exit; } } } ?>
希望本文所述对大家的php程序设计有所帮助。
以上就是php实现的简单检验登陆类的详细内容,更多请关注gaodaima搞代码网其它相关文章!