Blogger Information
Blog 34
fans 0
comment 0
visits 22399
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
11月18日—PHPpost传值
曾龙宇
Original
493 people have browsed it

POST传值

  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>get传值</title>
  6. </head>
  7. <body>
  8. <form action="" method="post">
  9. <div>
  10. <label for="username">账号</label>
  11. <input type="text" name="name" id="username" value="">
  12. </div>
  13. <div>
  14. <label for="pwd">密码</label>
  15. <input type="password" name="pwd" id="pwd" value="">
  16. </div>
  17. <div>
  18. <button>登录</button>
  19. </div>
  20. </form>
  21. </body>
  22. </html>
  23. <?php
  24. print_r($_POST);
  25. echo '<br>';
  26. echo $_POST['name'].'<br>';
  27. echo $_POST['pwd'];
  28. ?>

运行效果
手写作业

Correcting teacher:查无此人查无此人

Correction status:qualified

Teacher's comments:完成的不错,继续保持
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post