Implementation - way 1
- Step 1 - upload files style.css, upload.php, jquery-1.12.4.min.js (it's in js folder), upload.packed.js (it's in js folder) to your server
- Step 2 - include javascript and css files to the head section of your page
<head>upload.packed.js contains: jquery.uploadifive.min.js, myupload.js
<link rel='stylesheet' type='text/css' href='style.css' />
<script type='text/javascript' src='js/jquery-1.12.4.min.js'></script>
<script type='text/javascript' src='js/upload.packed.js'></script>
</head>
<input class="IMU" type="file" path="files/" multi="true" startOn="auto" afterUpload="link" />You can also use other parameters, which are described in the documentation
Implementation - way 2
- Step 1 - upload files style.css, upload.php, jquery-1.12.4.min.js (it's in js folder), jquery.uploadifive.min.js (it's in js folder), myupload.js (it's in js folder) to your server
- Step 2 - include javascript and css files to the head section of your page
<head>
<link rel='stylesheet' type='text/css' href='style.css' />
<script type='text/javascript' src='js/jquery-1.12.4.min.js'></script>
<script type='text/javascript' src='js/jquery.uploadifive.min.js'></script>
<script type='text/javascript' src='js/myupload.js'></script> <head/>
<input class="IMU" type="file" path="files/" multi="true" startOn="auto" afterUpload="link" />You can also use other parameters, which are described in the documentation