博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
用php做一个简单的注册用户功能
阅读量:5036 次
发布时间:2019-06-12

本文共 1342 字,大约阅读时间需要 4 分钟。

首先在register.php页面可以做一个静态的注册页面,代码如下

<?php

<form action="do_register.php" method="post">

用户名:<input type='text' name="user" id="1"><br>

密码:<input type='password' name="pwd" id="2"><br>

确认密码:<input type='password' name="confirmpwd" id="3"><br>

<input type='submit' name="sub" value="sub">

</form>

然后再在do_register.php页面控制注册,代码如下

<?php

  if(!$_POSTt['sub']){

    exit("请点击注册按钮");

  }

  $_POST['user']=trim(strip_tags($_POST['user'])));

  if(!$_POST['user']){

    exit("用户名不能为空");

  }

  $_POST['pwd']=trim(strip_tags($_POST['pwd'])));

 if(!$_POST['pwd']){

    exit("密码不能为空");

  }

  $_POST['confirmpwd']=trim(strip_tags($_POST['confirmpwd'])));

  if(!$_POST['confirmpwd']){

    exit("确认密码不能为空");

  }

  if($_POST['pwd']!=$_POST['confirmpwd']){

    exit("密码与确认密码不相等");

  }

  $_POST['pwd']=md5($_POST['pwd']);

  $arr=[];

  $arr['user']=$_POST['user'];

  $arr['pwd']=$_POST['pwd'];

  $file="userinfo.txt";

  if(is_file($file)){

  $files=file($file);

  foreach($files as $v){

    $v=substr($v,0,-2);

    $v=json_decode($v,true);

    foreach($v as $v1){

    if($_POST['user']==$v1['user']){

        exit("用户名重名,请重新输入");

      }

    }

  }

}

$arr=json_decode($arr);

$con=file_put_contents($file,$arr."\r\n",FILE_APPEND);

$lenth=strlen($arr)+2;

if($con==$lenth){

  echo "注册成功";

}else{

  echo "注册失败";

}

?>

转载于:https://www.cnblogs.com/gujunlin/p/7443721.html

你可能感兴趣的文章
phpcms 添加自定义表单 留言
查看>>
mysql 优化
查看>>
读书笔记 ~ Nmap渗透测试指南
查看>>
WCF 配置文件
查看>>
动态调用WCF服务
查看>>
oracle导出/导入 expdp/impdp
查看>>
类指针
查看>>
css修改滚动条样式
查看>>
2018.11.15 Nginx服务器的使用
查看>>
Kinect人机交互开发实践
查看>>
百度编辑器UEditor ASP.NET示例Demo 分类: ASP.NET...
查看>>
JAVA 技术类分享(二)
查看>>
android客户端向服务器发送请求中文乱码的问
查看>>
UOJ#220. 【NOI2016】网格 Tarjan
查看>>
Symfony翻译教程已开课
查看>>
Python模块之pickle(列表,字典等复杂数据类型与二进制文件的转化)
查看>>
通过数据库表反向生成pojo类
查看>>
css_去掉默认样式
查看>>
TensorFlow2.0矩阵与向量的加减乘
查看>>
NOIP 2010题解
查看>>