javascript - How do I access the multipart_params values on the server with Plupload? -
i have assigned arbitrary data plupload instance's multipart_params so:
multipart_params: { 'username': 'bob','id': some_value }
how can access these values on server within upload.php script called when files uploaded?
you can try $_request variable (php side, of course):
$_request['username']; $_request['id'];
Comments
Post a Comment