plupload-handler-php icon indicating copy to clipboard operation
plupload-handler-php copied to clipboard

handle additional inputs

Open hawkiq opened this issue 8 years ago • 2 comments

how to handle additional information in form like title or section number ? I've included up.setOption('multipart_params' for additional params but how to handle them in php file ?

hawkiq avatar Jul 19 '17 09:07 hawkiq

You can access them directly through $_POST or $_REQUEST variables. Currently there's no dedicated method for retrieving them.

jayarjo avatar Jul 20 '17 05:07 jayarjo

To handle additional info in from i uses

FileUploaded:function( uploader , file , result ){ var res=JSON.parse(result); if(res.OK == 1){ //ajax ajax other form parameters + res.info.path to another form hander route or same } } After file successfully uploaded. For multiple file UploadComplete: event

hassanraza05128 avatar Mar 10 '18 15:03 hassanraza05128