Bootstrap browse button
a) For Multiple file upload..........
<label class="btn btn-primary btn-file">
<i class="fa fa-picture-o"></i> Browse
<input type="file" name="file[]" style="display:none;" multiple>
</label>
b) For Single file upload........
<label class="btn btn-primary btn-file">
<i class="fa fa-picture-o"></i> Browse
<input type="file" name="file" style="display:none;">
</label>
<label class="btn btn-primary btn-file">
<i class="fa fa-picture-o"></i> Browse
<input type="file" name="file[]" style="display:none;" multiple>
</label>
b) For Single file upload........
<label class="btn btn-primary btn-file">
<i class="fa fa-picture-o"></i> Browse
<input type="file" name="file" style="display:none;">
</label>
Comments
Post a Comment