<?php
///////////////////////////////////////////////////////////////////////////////////////////
///Script PHP/MYSQL of management of classifieds ads developed by Script PAG
///Script PAG all rights reserved. Use under license. http://www.script-pag.com
///////////////////////////////////////////////////////////////////////////////////////////

require_once(__DIR__.'/uploadManager.php');

$result = 'error_move_file';
if(!empty($_POST) && isset($_POST['move_file'])) {
	$upload = new uploadManager();
	$result = $upload->moveFile($_POST);
}
if(is_string($result) && strpos($result, 'error_') > -1) header($_SERVER['SERVER_PROTOCOL'].' 500 Internal Server Error', true, 500);
echo json_encode($result, JSON_HEX_TAG | JSON_HEX_APOS | JSON_HEX_QUOT | JSON_HEX_AMP);