首页 开发编程 正文

php怎么换注册登陆页面(php自动登录)

不会百度一下就好了$submit=isset($_POST['submit'])?if($submit){//如果有表单提交$username=isset($_POST['username'])?用户登陆就是等于这个查询不过查询的时候多加一个password就是WHERE`username`='$username`AND`passwo...

今天给各位分享php怎么换注册登陆页面的知识,其中也会对php自动登录进行解释,如果能碰巧解决你现在面临的问题,别忘了关注本站,现在开始吧!

本文目录:

php 制作简单的注册页面 登陆页面 然后验证

user表 字段id int(11) username varchar(20) password varchar(32)

这3个字段就够了。

html页面 rel.html

form action="rel.php" method="post"

用户名:input type="text" name="name"brbr

密码:input type="password" name="password"brbr

input type="submit" name="submit" value="注册"

/form

rel.php

?php

//连接数据库的代码我就不写了 你应该会吧?不会百度一下就好了

$submit = isset($_POST['submit']) ? $_POST['submit'] : '';

if($submit){//如果有表单提交

$username = isset($_POST['username']) ? $_POST['username'] : '';

$password = isset($_POST['password']) ? $_POST['passowrd'] : '';

$password = md5($password);

//先查询数据库是否存在该用户名 注:用户登陆就是等于这个查询 不过查询的时候多加一个password 就是WHERE `username` = '$username` AND `password` = '$password` 就OK拉。

$sqlSelect = "SELECT `username` FROM `user` WHERE `username` = '$username'";

$querySelect = mysql_query($sqlSelect);

@$resultSelect = mysql_fetch_array($querySelect);

if($resultSelect['username']){

echo "scriptalert('该用户名已经存在。');location.href='rel.html';/script";

}else{//可以注册。

$sqlInsert = "INSERT INTO `user`(`username`,`password`) VALUES('$username','$password')";

$queryInsert = mysql_query($sqlInsert);

if($queryInsert){//注册成功

echo "scriptalert('恭喜,注册成功。');location.href='这里写你注册成功的页面地址。';/script";

}else{

echo "scriptalert('对不起,注册失败。');location.href='rel.html';/script";

}

}

}

?

这就是个简单的注册页面 登陆的话你就把验证用户是否存在的那个单拿出来就行了。。

纯手打,望采纳。

----------------------

对啊 那句话就是注释啊。

用PHP做登陆注册页面

登录页:login.php

?php

include("conn.php");

$username=$_POST['name'];

$password=$_POST['password'];

$yanzheng=$_POST['yanzheng'];

if(isset($_POST['submit']))

{

$sql=("select username,password from member where username='$username' and password='$password'") or die("sql语句执行失败");

//print_r($sql);

$ar=mysql_query($sql);

if($ar)

{

if($row=mysql_fetch_array($ar))

{

session_start();

if($_POST["yanzheng"])

{

if($yanzheng!=$_session[pic]||$yanzheng=="")

{

echo "验证码输入有误";

exit;

}

if($yanzheng==$_session[pic])

{

header("location:index.php");

}

}

}

else

{

echo "用户名或密码错误";

}

}

}

?

form action="login.php" method="post"

table border=1 align=center width=500 height=300 bgColor=#DFFFDF bordercolor=#fffbec

tr

td colspan=2 align=center用户登录/td

/tr

tr

td用户姓名:/td

tdinput type="text" name="name" id="name"//td

/tr

tr

td用户密码:/td

tdinput type="password" name="password" id="password"//td

/tr

tr

td验证码:/td

tdinput type="text" name="yanzheng" id="yanzheng"/

img src="yanzheng1.php" width="50" height="30"/img

/td

/tr

tr

td colspan=3 align=center

input type="submit" name="submit" value="登录"/

input type="reset" name="reset" value="重置"/

a href="register.php"注册/a

/td

/tr

/table

/form

注册页:register.php

?php

include("conn.php");

if(isset($_POST['submit'])$_POST['submit']) {

if($_POST['username']=='')

{

echo "用户名不能为空";

exit();

}

if($_POST['password']=='')

{

echo "密码不能为空";

exit();

}

if($_POST['realpass']!=$_POST['password'])

{

echo "两次密码输入不一致";

exit();

}

$sql="insert into member(username,real_name,password,email,headimg) values('$_POST[username]','$_POST[username]','$_POST[password]','$_POST[email]','')";

$ar=mysql_query($sql);

if($ar)

{

header("location:index.php");

}

else

{

echo mysql_error();

}

}

?

body

form action="register.php" method="post"

table border=1 align=center width=500

tr

td height=40 bgColor=#DFFFDF colspan=2会员注册 [a href="login.php"返回登录页/a]/td

/tr

tr

td height=40 bgColor=#fffbec 会员ID/td

tdinput type="text" name="username" id="username"//td

/tr

tr

td height=40 bgColor=#fffbec密码/td

tdinput type="password" name="password" id="password"//td

/tr

tr

td height=40 bgColor=#fffbec确认密码/td

td

input type="password" name="realpass" id="realpass"/

/td

/tr

tr

td height=40 bgColor=#fffbecEMAIL/td

tdinput type="text" name="email" id="email"/

/tr

tr

td height=40 bgColor=#fffbec/td

tdinput type="submit" name="submit" value="注册"/input type="reset" value="重置"/td

/tr

/table

/form

/body

主页显示:index.php

?php

include("conn.php");

function cutstr($str,$cutleng)

{

$str = $str; //要截取的字符串

$cutleng = $cutleng; //要截取的长度

$strleng = strlen($str); //字符串长度

if($cutleng$strleng)return $str;//字符串长度小于规定字数时,返回字符串本身

$notchinanum = 0; //初始不是汉字的字符数

for($i=0;$i$cutleng;$i++)

{

if(ord(substr($str,$i,1))=128)

{

$notchinanum++;

}

}

if(($cutleng%2==1)($notchinanum%2==0)) //如果要截取奇数个字符,所要截取长度范围内的字符必须含奇数个非汉字,否则截取的长度加一

{

$cutleng++;

}

if(($cutleng%2==0)($notchinanum%2==1)) //如果要截取偶数个字符,所要截取长度范围内的字符必须含偶数个非汉字,否则截取的长度加一

{

$cutleng++;

}

return substr($str,0,$cutleng);

}

?

html

head

script type="text/javascript"

function All(e, itemName)

{

var aa = document.getElementsByName(itemName);

for (var i=0; iaa.length; i++)

aa[i].checked = e.checked; //得到那个总控的复选框的选中状态

}

function Item(e, allName)

{

var all = document.getElementsByName(allName)[0];

if(!e.checked) all.checked = false;

else

{

var aa = document.getElementsByName(e.name);

for (var i=0; iaa.length; i++)

if(!aa[i].checked) return;

all.checked = true;

}

}

/script

/head

?php

include("conn.php");

if(isset($_POST['del']))

{

$mm = $_POST["selected"];

$id =implode(",",$mm);

$sql = "delete from forums where id in(".$id.")";

//echo $sql;

$result=mysql_query($sql);

echo $result?"删除成功":"删除失败";

}

?

table style="BORDER-BOTTOM-WIDTH: 1px; BORDER-COLLAPSE: collapse" cellSpacing=0 cellPadding=0 width=600 align=center border=1 bordercolor=#ddddff

tr align=middle

td height=40 bgColor=#DFFFDF colspan=3论坛列表/td

/tr

tr

td colspan=3a href="login.php" style="float:right"[退出系统]/aa href="add_forum.php" style="float:right"[添加论坛]/a/td

td/td

/tr

tr align=middle

td height=40 bgColor=#DFFFDF width=80状态/td

td height=40 bgColor=#DFFFDF论坛/td

td height=40 bgColor=#DFFFDF最后更新/td

/tr

?php

$sql="select * from forums";

$result=mysql_query($sql);

$num=mysql_num_rows($result);

if($num0)

{

while($row=mysql_fetch_array($result)){

?

tr align=middle

td bgColor=#fffbecinput type="checkbox" name="selected" value="1"//td

td height=50 bgColor=#fffbec width=300

?php

echo "diva href=\"forums.php?F=".$row['ID']."\"".$row['forum_name']."/a/div";

echo cutstr($row['forum_description'],24);//最多显示24个字节,12个字,多余部分用省略号代替

echo "……";

?

/td

td height=50 bgColor=#fffbecdiv?php echo $row['last_post_time']."by".$row['last_post_author']?/div/td

/tr

?php

}

}

else

{

echo "tr bgColor=#fffbectd colspan=3对不起,论坛尚在创建中……/td/tr";

}

?

tr

td colspan=3 input type="checkbox" name="selected" value="1" onclick="All(this,'selected')"/全选/不全选/td

/tr

tr

tdinput type="button" name="del" id="del" value="删除选中项"/

?php

?

/td

/tr

/table

/html

数据库你就自己建,望采纳~

求帮助修改php的注册帐号页面

首先 需要使用js来判断空间是否失去焦点。

比如input type="text" id="username" name="username" onblur="checkusername()"/

script

function checkusername(){

var username=$('#username').var();//取得表单中的用户名

$.post('./checkusername.php',{'username':username},function(res){

switch(res){

case '1':

//操作

break;

case'2':

//操作

break;

default:

//操作

}

});

}

/script

然后就是写一个checkusername.php的文件

首先接受传过来的username 之后连接数据库 查表。

如果查到了就返回1 查不到就返回0

完。。。

php怎么跳转到登陆界面

用户登录的同时,在session或者cookie中记录下请求页面的URL;登录验证成功后在跳转回该URL。

//checklogin.php

session_start();

if (!isset ($_SESSION['login_ok']))

{

echo "script language=javascriptalert ('要访问的页面需要先登录。');/script";

$_SESSION['userurl'] = $_SERVER['REQUEST_URI'];

echo 'script language=javascriptwindow.location.href="login.php"/script';

}

//--checklogin.php

//login.php

session_start();

//此处省略了账号密码验证代码,验证OK再执行下面代码

if (isset ($_SESSION['userurl']))

{

//会话中有要跳转的页面

$url = $_SESSION['userurl'];

}

else

{

//没有要跳转的页面,则转到首页

$url = "home.php";

}

//0.5s后跳转

echo "meta http-equiv=\"refresh\" content=\"0.5;url=$url\"";

如何用php做个登陆界面?

你可以做一个简单的例如你只有用户名和密码即可那么你先在数据库(以mysql为例)中建表例如叫做user 字段为 id name pass分别是编号、用户名、密码长度分别是int(8) a_t(自动编号) 主键,varchar(50) ,varchar(50) 你可以添加一个测试数据 例如 1,admin,admin//说明密码这里不说加密的问题,用明文实现 登录页面的代码:login.phphtmlheadtitle用户登录/title/headbodyform action="checklogin.php" name="loginform" method="post"用户名:input name="name" type="text"br密 码:input name="password" type="password"brinput value="登录" type="submit"br/form/body/html checklogin.php代码(检测登录): $name=$_POST[name];$pass=$_POST[password];session_start();//这个可以维持登录状态,可以参照session的使用

//登录检查函数 function login_state($uid,$user_shell){ $sql="SELECT * FROM `user` WHERE `name`='$name'";

$query=@mysql_query($sql) or die(mysql_error());

$us=is_array($row=@mysql_fetch_array($query));

$user_shell=$us ? $user_shell==$row[password]:FALSE;

if($user_shell){ echo "scriptalert('登录成功');/script";

return $row;

}else{

echo "scriptalert('您暂时不能浏览该页面,请先登录');location.href='login.php';/script";

} }login_state($name,$password);?

希望可以帮到您,如果还有问题可以联系2458285853

如何用php在登录页面中设置“注册”按钮,然后点击后即进入注册页面啊?在此先感谢了

用Form表单,如form action="你要跳转的页面网址" name="form" method="post"/

input type="submit" name="name" value="注册"/

/form

这样的话,点击注册按钮就跳转到你想要的网址那儿去了

关于php怎么换注册登陆页面和php自动登录的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息,记得收藏关注本站。

本文转载自互联网,如有侵权,联系删除