记录:PHP服务端提取(验证)表单数据

<?php
  function postback(){
    if(empty($_POST['username'])){
      $GLOBALS['message']='不能为空';
      return;
    }
     if(empty($_POST['password'])){
      $GLOBALS['message']='请输入密码';
      return;
    }
     if(empty($_POST['confirm'])){
      $GLOBALS['message']='密码不能为空';
      return;
    }
    if($_POST['confirm']!==$_POST['password']){
      $GLOBALS['message']="两次输入密码不一致";
      return;
    }
    if(!(isset($_POST['agree'])&&$_POST['agree']==='on')){
    $GLOBALS['message']="请同意协议";
    return;
  }
    $username=$_POST['username'];
    $password=$_POST['password'];
    file_put_contents('users.txt',$username.'|'.$password."\n",FILE_APPEND);
    $GLOBALS['message']='注册成功';
  }
  if ($_SERVER['REQUEST_METHOD']==='POST') {
    postback();
  }
?>
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>注册</title>
</head>
<body>
  <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
    <table border="1">
     <tr>
        <td><label for="username">用户名</label></td>
        <td><input type="text" name="username" id="username" value="<?php echo isset($_POST['username']) ? $_POST['username'] : ""; ?>"></td>
      </tr>
        <tr>
        <td><label for="password">密码</label></td>
        <td><input type="password" name="password" id="password"></td>
      </tr>
        <tr>
        <td><label for="confirm">用户名</label></td>
        <td><input type="password" name="confirm" id="confirm"></td>
      </tr>
    <?php if(isset($message)): ?>
      <tr>
        <td></td>
        <td><?php echo $message; ?></td>
      </tr>
    <?php endif ?>
      <tr>
        <td><button>注册</button></td>
        <td><label><input type="checkbox" name="agree" value="true">同意注册协议</label></td>
      </tr>
    </table>
  </form>
</body>
</html>

转载于:https://my.oschina.net/u/3848851/blog/1830509

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值