Sessions and uploadify

后端 未结 11 2240
无人及你
无人及你 2020-12-02 19:18

I\'m using uploadify, and i can\'t set sessions in my php files, my script looks like this:

    $(\"#uploadify\").uploadify({
        \'uploader\'       : \'         


        
11条回答
  •  天命终不由人
    2020-12-02 19:41

    I found a solution which is far easier to implement, especially if you already have a session-oriented PHP backend for login, etc.:

    just write the following code in the jQuery statement:

    'script'    : '/upload.php?=',
    

    which will magically attach your current session name and your session id.

提交回复
热议问题