Skip to content

Instantly share code, notes, and snippets.

@mattwilliamson
Created August 27, 2010 21:32
Show Gist options
  • Save mattwilliamson/554237 to your computer and use it in GitHub Desktop.
Save mattwilliamson/554237 to your computer and use it in GitHub Desktop.
<?php
$device_id = $_POST["udid"];
if(array_key_exists("photo", $_FILES)) {
$file = $_FILES["photo"];
if($file["error"] == 0) {
$size = $file["size"]; // Bytes
$type = $file["type"]; // image/jpeg
move_uploaded_file($file["tmp_name"], "/path/to/new/location");
} else {
// There was an error
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment