Skip to content

Instantly share code, notes, and snippets.

@summer4096
Created July 25, 2010 03:53
Show Gist options
  • Save summer4096/489288 to your computer and use it in GitHub Desktop.
Save summer4096/489288 to your computer and use it in GitHub Desktop.
$upload = $this->input->files->avatar;
if ($upload && $upload->ext == 'png' && $upload->width <= 100 && $upload->height <= 100) {
$upload->move(DIR_PUBLIC.'avatars/');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment