>  기사  >  php教程  >  php基础练习--多文件上传,

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

WBOY
WBOY원래의
2016-06-13 08:47:25824검색

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

  

<?php
            header("content-type:text/html;charset=utf-8");
            echo "<pre class="brush:php;toolbar:false">";
            print_r($_FILES);
            echo "
"; $count = count($_FILES['file']['name']); for ($i = 0; $i alert('succeed!');window.location.href='index_uploads.php';"; } else { echo "<script>alert('fail!');window.location.href='index_uploads.php';</script>"; } } uploads.php

  

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.