博客列表 >PHP教学-form中post传值_11.18

PHP教学-form中post传值_11.18

果莫个人博客
果莫个人博客原创
2023年01月16日 23:05:32621浏览

PHP学习,form中post传值

<!doctype html>

<html lang="en">
<head>
   <meta charset="UTF-8">
   <meta name="viewport"          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
   <meta http-equiv="X-UA-Compatible" content="ie=edge">
   <title>Document</title>
</head>
<body>
<form action="1.php" method="post">
   <label for="username">用户</label>
   <input type="text" id="username" name="username">
   <label for="password">密码</label>
   <input type="text" id="password" name="password">
   <br>
   <button>提交</button>
   <?php
   echo ‘<br>‘.$_POST[‘username’].’后面密码’.$_POST[‘password’];
   ?>

</form>
</body>
</html>

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议