plupload-handler-php
plupload-handler-php copied to clipboard
handle additional inputs
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 ?
You can access them directly through $_POST or $_REQUEST variables. Currently there's no dedicated method for retrieving them.
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