Skip to content

Instantly share code, notes, and snippets.

@andreafortuna
Created February 7, 2016 14:36
Show Gist options
  • Save andreafortuna/b5da306503fa3cbcfa0f to your computer and use it in GitHub Desktop.
Save andreafortuna/b5da306503fa3cbcfa0f to your computer and use it in GitHub Desktop.
<?php
if (isset($_POST['image'])) {
file_put_contents("uploads/".rand().".png",base64_decode(str_replace("data:image/png;base64,","", $_POST['image'])));
echo 'Upload completed!';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment