Created
May 2, 2012 19:05
-
-
Save MauMaGau/2579325 to your computer and use it in GitHub Desktop.
HTML/CI: video upload
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section id='upload-media'> | |
<h3 class='clickable'>Upload Media</h3> | |
<section id='file-uploader'> | |
<p>Max total file size: 200mb</p> | |
<input type='hidden' name='gallery_id' value='<?php echo $gallery->gallery_id; ?>' /> | |
<noscript> | |
<?php echo form_open_multipart('gallery/upload/'.$gallery->gallery_id);?> | |
<input type="hidden" name="max_file_size" value="209715200" /> | |
<input type="file" name="userfiles" /> | |
<input type='submit' value='Add' /> | |
<?php echo form_close(); ?> | |
</noscript> | |
</section> | |
<section id='upload-status'> | |
<ul> | |
</ul> | |
</section> | |
</section> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment