Home> php教程> php手册> body text

一个基于mysql的登陆验证程序(一)

WBOY
Release: 2016-06-21 09:13:10
Original
983 people have browsed it

mysql|程序


/******************************************************
file name: login.php3
Login Check
编码: PHP 4
作者: Kevin Lee

Database: MySQL。
Host: localhost Database : mydb
Table structure for table 'user'
--------------------------------------------------------
CREATE TABLE user (
id smallint(6) NOT NULL auto_increment,
user varchar(12) NOT NULL,
passwd varchar(12) NOT NULL,
name varchar(20),
email varchar(30),
level char(1),
status char(1),
UNIQUE id (id)
);
--------------------------------------------------------


*******************************************************/
?>


$db_id = mysql_pconnect("localhost", "root", "");
$sql="select id, user, passwd from user where user='".$name."' and passwd='".$pwd."'";
$result = mysql_db_query("mydb",$sql);
$row = mysql_fetch_array($result);
$id = $row[id] ;

if ($id!="") {
session_start();
session_register("yn");
$yn="yes" ;
echo "

";
echo "你已经成功登陆。。。"."

";
echo "

"."窗口10秒钟后自动关闭"."
";
echo "";

}
else {
echo "帐号或密码错误!!!";
echo "

";
echo "

";
echo " back";
echo "
" ;
}
?>



Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template
    About us Disclaimer Sitemap
    php.cn:Public welfare online PHP training,Help PHP learners grow quickly!