php基础练习题-多文件上传

WBOY
Release: 2016-06-13 12:28:22
Original
779 people have browsed it

php基础练习--多文件上传

<html><head>    <meta charset="utf-8">    <title>index_uploads</title></head><body>    <form action="uploads.php" method="post" enctype="multipart/form-data">        <input type="file" name="file[]">        <br>        <input type="file" name="file[]">        <br>        <input type="submit" value="uploads">    </form></body></html>index_uploads.php
Copy after login

  

<?php            header("content-type:text/html;charset=utf-8");            echo "<pre class="brush:php;toolbar:false">";            print_r($_FILES);            echo "
Copy after login
"; $count = count($_FILES['file']['name']); for ($i = 0; $i < $count; $i++) { $tmpfile = $_FILES['file']['tmp_name'][$i]; $filefix = array_pop(explode(".", $_FILES['file']['name'][$i])); $dstfile = "uploads/files/".time()."_".mt_rand().".".$filefix; if (move_uploaded_file($tmpfile, $dstfile)) { echo "<script>alert('succeed!');window.location.href='index_uploads.php';</script>"; } else { echo "<script>alert('fail!');window.location.href='index_uploads.php';</script>"; } }uploads.php

  

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template