<?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_upload_no_file';
if(!empty($_POST) && isset($_POST['context']) && !empty($_FILES)) {
	$upload = new uploadManager();
	$result = $upload->upload($_POST, $_FILES);
}
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);