PHP学习笔记(9)文件上传

index.php

 1 <!doctype html>
 2 <html lang="en">
 3 <head>
 4     <meta charset="UTF-8">
 5     <title>Document</title>
 6 </head>
 7 <body>
 8     <form action="upload.php" method="post" enctype="multipart/form-data">
 9         <input type="file" name="name1">
10         <input type="file" name="name2">
11         <br>
12         <br>
13         <input type="submit">
14     </form>
15     
16 </body>
17 </html>

upload.php

1 <?php 
2     echo "<pre>";
3     print_r($_FILES);
4     echo "</pre>";
5  ?>

 

相关文章:

  • 2022-12-23
  • 2021-10-14
  • 2021-10-28
  • 2021-09-05
  • 2021-07-24
  • 2021-10-16
  • 2022-01-15
  • 2022-02-22
猜你喜欢
  • 2022-01-15
  • 2021-05-31
  • 2021-11-11
  • 2022-12-23
  • 2021-06-24
  • 2021-09-19
相关资源
相似解决方案