I have a website ( bedatify.com) and I want to make a page within which people could upload their images to my amazon EC2 server. I checked similar questions like Unable to upload files on Amazon EC2 - php and how to upload to files to amazon EC2 but I don't figure it out how to manage it! Is this piece f code a good start? What should I change to let user upload pictures directly to my EC2 server from my website?
<?php
if(isset($_POST['image'])){
echo "in";
$image = $_POST['image'];
upload($_POST['image']);
exit;
}
else{
echo "image_not_in";
exit;
}
function upload($image){
$now = DateTime::createFromFormat('U.u', microtime(true));
$id = "pleeease";
$upload_folder = "/var/www/html/upload";
$path = "$upload_folder/$id.jpg";
if(file_put_contents($path, base64_decode($image)) != false){
echo "uploaded_success"
}
else{
echo "uploaded_failed";
}
}
?>