摘要:
<?phpinclude 'config.php';session_start();//启动会话//获取用户的登录信息。用户名,密码,是否保存信息$UserName1=$HTTP_POST_VARS["UserName"];$Password1=$HTTP_POST_VARS["Password"];//查询用户名是否存在$query="select * from user where username='$UserName1'";$result=mysql_query($query);$row= 阅读全文