Skip to content

Instantly share code, notes, and snippets.

@sunkibaek
Created December 6, 2013 18:09
Show Gist options
  • Save sunkibaek/7829477 to your computer and use it in GitHub Desktop.
Save sunkibaek/7829477 to your computer and use it in GitHub Desktop.
<?php
$_FILES['name-of-the-field']['tmp_name'];
$_FILES['name-of-the-field']['name'];
$_FILES['name-of-the-field']['type']; // "image/jpeg", "image/png", "image/gif"
$_FILES['name-of-the-field']['size'];
$_FILES['name-of-the-field']['error']; // returns 0 if there's no error
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment