hy, i need a little help here:
i use SWFupload to upload images!
in the upload function i make a folder call $_SESSION[\'folder\']
and all the files i uplo
you must pass the session ID to the upload file used by swfupload. more details here
SWFUpload doesn't pass the session ID to the script when you upload, so you have to do this yourself. Simply pass the session ID in a get or post param to the upload script, and then in your application do this before session_start:
if(isset($_REQUEST['PHPSESSID'])) {
session_id($_REQUEST['PHPSESSID']);
}