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

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

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -