当前位置:首页> PHP教程> PHP代码
关键字
文章内容
一个基于mysql的登陆验证程序(三)
 
 
修改时间:[2010/02/08 10:10]    阅读次数:[1422]    发表者:[起缘]
 
<?
/************************
file name: login_chk.php3
************************/
if ($yn!="yes") {

    echo "<script language=\"javascript\">\n";
    echo "<!--  \n";
    echo "history.back () ;\n";
    echo "window.open ('../login/login.htm','login','height=116,width=210,top=120,left=200,toolbar=no,menubar=no,scrobllbar=no,resizable=no,location=no,status=no')\n";
    echo "--> \n";
    echo "</script> \n";
    exit;
}
?>

Example:
<? require("login_chk.php3"); ?>
<!--file name: sample.php3-->
<html>
<head></head>
<body>
Success! You have pass the checking.
</body>
<html>