|
| | |
| Main » 2012 » November » 6 » Multiple File Upload without using any external plugin
10:07 PM Multiple File Upload without using any external plugin |
hello friends first of all we want to share a example of single file
upload in php script after that the second option is Multiple file
upload without using any external library like swf upload and
flashuploads etc....
Example 1) single file upload , make a anything.php and paste it in ur
project and run it and with parallel of this file , make a folder named
uploads where your files will be upload
<?php
if($_REQUEST) { move_uploaded_file($_FILES['myfiles']['tmp_name'][$i],"uploads/".$$_FILES['myfiles']['name']); echo '<script>alert("file uploaded successfully ")</script>';
} ?> <html> <head></head> <body> <form method="post" enctype="multipart/form-data"> <h1>Single File Upload DEMO</h1> <span> select multiple file by holding CTRL key </span> <input type="file" name="myfiles" /> <input type="submit" name="submit" value="UPLOAD" /> </body> </html>
Example 2) Multiple file upload , make a anything.php and paste following code in
ur project and run it and with parallel of this file , make a folder
named
uploads where your files will be upload
<?php
if($_REQUEST) { foreach($_FILES['myfiles']['name'] as $i => $name) { move_uploaded_file($_FILES['myfiles']['tmp_name'][$i],"uploads/".$name); } echo '<script>alert("file uploading done successfully ")</script>';
} ?> <html> <head></head> <body> <form method="post" enctype="multipart/form-data"> <h1>Multiple File Upload </h1> <span> select multiple file by holding CTRL key </span> <input type="file" multiple="multiple" name="myfiles[]" /> <input type="submit" name="submit" value="UPLOAD" /> </body> </html>
|
Category: Web Development |
Views: 329 |
Added by: admin-priyank
| Rating: 5.0/1 |
| |
| | |
|
Calendar |
| « November 2012 » | Su | Mo | Tu | We | Th | Fr | Sa | | | | | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 |
| |
|
Our poll |
| | |
|
Statistics |
|
Total online: 1 Guests: 1 Users: 0 | |
|
|