Blogger Information
Blog 12
fans 0
comment 2
visits 6279
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
表单与提交
白鸽
Original
433 people have browsed it

表单作业

这次时间不充足,就做的简单一些吧。

表单

提交

  1. <?php
  2. $u=$_POST["u"];
  3. print_r($u);
  4. echo "<br>";
  5. echo "<br>";
  6. echo "<br>";
  7. $face=$_FILES["face"];
  8. print_r($face);
  9. ?>
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>表单</title>
  8. </head>
  9. <body>
  10. <style>
  11. div{height: 50px;}
  12. </style>
  13. </head>
  14. <body>
  15. <form action="reg.php" method="post" enctype="multipart/form-data" >
  16. <fieldset>
  17. <legend>注册表单</legend>
  18. <div><label>用户名:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</label><input type="text" name="u[name]"></div>
  19. <div><label>密码:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</label><input type="password" name="u[pws]"></div>
  20. <div><label>重复密码:&nbsp;&nbsp;</label><input type="password" name="u[pws2]"></div>
  21. <div><label>E-mail:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</label><input type="email" name="u[email]"></div>
  22. <div><label>手机号:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</label><input type="tel" name="u[tel]"></div>
  23. <div><label>头像:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</label><input type="file" name="face"></div>
  24. <div style="height: 120px"><label>个人简介:</label><br><textarea name="jianjie" cols="100" rows="5"></textarea></div>
  25. <div><input type="reset">&nbsp;&nbsp;<input type="submit"></div>
  26. </fieldset>
  27. </form>
  28. </body>
  29. </html>
Correcting teacher:PHPzPHPz

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