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

Popular posts from this blog

css - Text drops down with smaller window -

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

ruby on rails - Authlogic - how to make a registration and don't log in the new account? -