Advertisement
juliarnasution

form upload multiple file

Mar 21st, 2020
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.52 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Tes Upload</title>
  5. </head>
  6. <body>
  7.     <form action="<?=site_url('dokumen/uploadfile')?>" method="POST" enctype="multipart/form-data">
  8.         <table>
  9.             <caption>Upload Multiple File</caption>
  10.             <tbody>
  11.                 <tr>
  12.                     <td>File 1 :</td>
  13.                     <td><input type="file" name="file1" value="" placeholder=""></td>
  14.                 </tr>
  15.                 <tr>
  16.                     <td>File 2 :</td>
  17.                     <td><input type="file" name="file2" value="" placeholder=""></td>
  18.                 </tr>
  19.             </tbody>
  20.         </table>
  21.     </form>
  22.    
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement