スキップしてメイン コンテンツに移動

投稿

12月, 2015の投稿を表示しています

PHP multipart/form-data ファイルアップロード(PHP公式ホームページサンプル)

<form action="" method="post" enctype="multipart/form-data"> <p>Pictures: <input type="file" name="pictures[]" /> <input type="file" name="pictures[]" /> <input type="file" name="pictures[]" /> <input type="submit" value="Send" /> </p> </form> <?php foreach ( $_FILES [ "pictures" ][ "error" ] as  $key  =>  $error ) {     if ( $error  ==  UPLOAD_ERR_OK ) {          $tmp_name  =  $_FILES [ "pictures" ][ "tmp_name" ][ $key ];          $name  =  $_FILES [ "pictures" ][ "name" ][ $key ];          move_uploaded_file ( $tmp_name ,  "data/ $name " );     } } ?>