Skip to content

Instantly share code, notes, and snippets.

@tsnoad
Last active December 16, 2015 22:29
Show Gist options
  • Save tsnoad/5507409 to your computer and use it in GitHub Desktop.
Save tsnoad/5507409 to your computer and use it in GitHub Desktop.
<?php
if ($_FILES['userfile']['size'] > 5 * 1024 * 1024) {
$error = 'File is too large.';
@unlink($_FILES['userfile']['tmp_name']) || $error .= $php_errormsg;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment