Uploadify: passing variables
I'm using uploadify and I don't know how to retrieve data. In my index file I'm doing:
'scriptData' : {'value' : '1')
And then I don't know how to retrieve this value from uploadify.php. I tried $_REQUEST['value']
and many more other op开发者_开发知识库tions and still doesn't get it.
Any ideas?
Thank you!
I'm not sure which version you are using, but for me, I grab the data with $_GET
. So for your example, it would be $value = $_GET['value']
.
精彩评论