Skip to content

Instantly share code, notes, and snippets.

@MauMaGau
Created May 2, 2012 19:05
Show Gist options
  • Save MauMaGau/2579325 to your computer and use it in GitHub Desktop.
Save MauMaGau/2579325 to your computer and use it in GitHub Desktop.
HTML/CI: video upload
<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