Skip to content

Instantly share code, notes, and snippets.

View collinsb's full-sized avatar

Brian Collins collinsb

  • Look Listen
  • Atlanta, GA
View GitHub Profile
@collinsb
collinsb / gist:c95ffa5e7ca538ba7bd8
Created May 28, 2015 20:36
Codeigniter Basic File (image) Upload
public function imgUpload($file) {
$config['upload_path'] = './assets/property/images/';
$config['allowed_types'] = 'gif|jpg|png|jpeg';
$config['max_size'] = '6000000';
$config['max_width'] = '10024';
$config['max_height'] = '5768';
//load codeigniter upload helper/libary/magic thing
$this->load->library('upload', $config);
<style>
.quiz-container {
position: relative;
padding-bottom: 90%;
height: 0;
overflow: hidden;
}
.quiz-container iframe {
position: absolute;