Skip to content

Instantly share code, notes, and snippets.

@zvineyard
Created February 27, 2012 05:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zvineyard/1921651 to your computer and use it in GitHub Desktop.
Save zvineyard/1921651 to your computer and use it in GitHub Desktop.
PHP: Basic File Upload
<?php
print_r($_FILES);
$new_image_name = "namethisimage.jpg";
move_uploaded_file($_FILES["file"]["tmp_name"], "/srv/www/upload/".$new_image_name);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment