《PHP實戰:php實現的簡單檢驗登陸類》要點:
本文介紹了PHP實戰:php實現的簡單檢驗登陸類,希望對您有用。如果有疑問,可以聯系我們。
PHP編程本文實例講述了php實現的簡單檢驗登陸類.分享給大家供大家參考.具體如下:
PHP編程
<?php
class checklogin
{
var $name;
var $pwd;
function __construct($username,$password)
{
$this->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']==$this->name and $info['pwd']==$this->pwd)
{
$_SESSION[admin_name]=$info[name];
$_SESSION[pwd]=$info[pwd];
echo "<script>alert('登錄成功!);window.location.href='index.php';</script>";
}
else
{
echo "<script language='javascript'>alert('登錄失敗!');history.back();</script>";
exit;
}
}
}
?>
PHP編程希望本文所述對大家的php程序設計有所贊助.
《PHP實戰:php實現的簡單檢驗登陸類》是否對您有啟發,歡迎查看更多與《PHP實戰:php實現的簡單檢驗登陸類》相關教程,學精學透。維易PHP學院為您提供精彩教程。