Blogger Information
Blog 19
fans 1
comment 0
visits 13174
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
2019.11.18POST传值--php培训第九期线上班
涤尘
Original
590 people have browsed it
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>post</title>
  6. </head>
  7. <body>
  8. <form action="" method="post">
  9. <label for="email">邮箱:</label>
  10. <input type="email" id="email" name="email" value="">
  11. <label for="password">密码:</label>
  12. <input type="password" id="password" name="password" value="">
  13. <button>登录</button>
  14. </form>
  15. </body>
  16. </html>
  17. <?php
  18. echo ($_POST['email']);
  19. echo '<hr>';
  20. echo ($_POST['password']);
  21. echo '<hr>';
  22. $str = 'SHANGHAI';
  23. echo strtolower($str);
  24. ?>


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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!