You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
532 B

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>C语言中文网——PHP文件上传</title>
  6. </head>
  7. <body>
  8. <form action="" method="post" enctype="multipart/form-data">
  9. <input type="file" name="fileA">
  10. <input type="submit" value="上传">
  11. </form>
  12. </body>
  13. </html>
  14. <?php
  15. if(!empty($_FILES)){
  16. foreach ($_FILES['fileA'] as $key => $value) {
  17. echo $key.'=>'.$value.'<br>';
  18. }
  19. }
  20. //显示成功了,但在文件夹中没有找到对应文件
  21. ?>