I want to set some params in my swfupload when some links are clicked, so i did something like this:
swfu.setPostParams({"PHPSESSID": swfu.settings.post_params.PHPSESSID, "tutorial": tutorial, "step": nr});
(this is a tutorial editor and i want to know to which step the file belongs to)
The postparams in the DOM is changed, but I can't find them in the $_POST.
Some flash versions have problems with sending stuff in POST, so I added the following line to my swfupload setup:
use_query_string: true,
Now i get the params in $_GET, but no luck there either: i still get the original params.
In IE it works just fine. Any ideas?