can't upload file with ngx uploader
can't upload file with ngx uploader I want to upload a file with ngx-uploader.I dont know how to set the data that i want to sent to backend backend.php public function add_icon() { $retval = array(); $icon = ''; $FILE_DIR = './images/'; if($_POST || $_FILES) { if(!empty($_FILES['icon']['name'])) { $icon = $_FILES['icon']['name']; } $should_save = true; $guid = rand(); if($icon != '') { $type = strtolower($_FILES['icon']['name']); $extArray = array(".jpg",".jpeg",".gif",".png"); if (!in_array(strtolower(strrchr($type, ".")), $extArray)) { $retval['message'] = 'Invalid file format.'; $should_save = false; } if($should_save) { $ext=$this->getExtension($_FILES[...
