用户注册



邮箱:

密码:

用户登录


邮箱:

密码:
记住登录一个月忘记密码?

发表随想


还能输入:200字
云代码 - php代码库

登录

2018-11-22 作者: 云代码会员举报

[php]代码库

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>

<body>
<!--登录业务逻辑-->
<?php
//获取前台用户提交数据
if(isset($_POST['submit'])){
	$userName=$_POST['username'];
	$passWord=$_POST['password'];
	//连接数据库
	$sql="SELECT * FROM username='$userName' and password='$passWord'";
	$result=$dbcn->query($sql);
	if($result->rowCount()==1){
		echo'登录成功!';
		//跳转到商品显示页面showgoods.php
	
	header('location:showgoods.php');
		
	}
	else{
		echo '请重新输入!';
		}	
	}

?>

<!--用户登录的页面-->
<form id="form1" name="form1" method="post" action="">
  <table width="500" border="1" align="center">
    <tr>
      <th colspan="2">用户登录</th>
    </tr>
    <tr>
      <td>用户名:</td>
      <td><label for="usename"></label>
      <input type="text" name="username" id="username" /></td>
    </tr>
    <tr>
      <td>密码:</td>
      <td><input type="text" name="password" id="password" /></td>
    </tr>
    <tr>
      <td colspan="2" align="center"><label for="pwd">
        <input type="submit" name="提交" id="提交" value="提交" />
      </label></td>
    </tr>
  </table>
</form>
</body>
</html>


网友评论    (发表评论)


发表评论:

评论须知:

  • 1、评论每次加2分,每天上限为30;
  • 2、请文明用语,共同创建干净的技术交流环境;
  • 3、若被发现提交非法信息,评论将会被删除,并且给予扣分处理,严重者给予封号处理;
  • 4、请勿发布广告信息或其他无关评论,否则将会删除评论并扣分,严重者给予封号处理。


扫码下载

加载中,请稍后...

输入口令后可复制整站源码

加载中,请稍后...