0, 'msg'=>'The filename is empty.') ); exit; } // Check if the filename exist and Sanitize::pathFile it's necesary for security reasons. if( Sanitize::pathFile(PATH_UPLOADS.$filename) ) { // Delete the file. Filesystem::rmfile(PATH_UPLOADS.$filename); // Delete the thumnails. Filesystem::rmfile(PATH_UPLOADS_THUMBNAILS.$filename); echo json_encode( array('status'=>1, 'msg'=>'The file was deleted.') ); exit; } echo json_encode( array('status'=>0, 'msg'=>'The file does not exist.') ); ?>