文章目录:
php网站登录注册源码
//login.php 负责处理用户登录与退出动作
if(!isset($_POST['submit'])){
exit('非法访问!');
}
$username = htmlspecialchars($_POST['username']);
$password = MD5($_POST['password']);
//包含数据库连接文件
include('conn.php');
//检测用户名及密码是否正确
$check_query = mysql_query("select uid from user where username='$username' and password='$password' limit 1");
if($result = mysql_fetch_array($check_query)){
//登录成功
$_SESSION['username'] = $username;
$_SESSION['userid'] = $result['uid'];
echo $username,' 欢迎你!进入 a href="my.php"用户中心/a
';
echo '点击此处 a href="login.php?action=logout"注销/a 登录!
';
exit;
} else {
exit('登录失败!点击此处 a href="javascript:history.back(-1);"返回/a 重试');
}
注:上述源码是在TP中的登录验证方法,供参考!!
求带登录的网站采集php源码或思路
获取链接的数据以后,加个判断:如果需要登陆 ,则使用php的curl函数来模拟post;不需要登陆则直接采集。
谁有登录的网站源码
JSP登陆系统 源代码 很好的源代码
!-- 该Login页面是一个简单的登录界面 --
!--
该JSP程序是用来测试与MySQL数据库的连接,
需要一个数据库:LearnJSP,和其中一个表:userinfo
表中有两个字段分别为:UserName varchar (20) not null,UserPwd varchar (20) not null
--
html
head
title登录/title
meta http-equiv="content-type" content="text/html; charset=UTF-8"
meta http-equiv="Content-Language" content="ch-cn"
/head
body
!-- Form 用来提取用户填入并提交的信息--
form method="post" name="frmLogin" action="LoginServlet"
h1 align="center"用户登录/h1br
p');//检测用户名及密码是否正确$check_query = mysql_query("select uid from user where username='$username' and password='$password' lim