Hey
Just found this, just what i needed, but when trying the multiple upload i get an error:
----- SWFUPLOAD SETTINGS ----
ID: undefined
upload_url: ../featuresdemo/upload.php?get_name=get_value
file_post_name: Filedata
post_params: {
post_name1: post_value1
post_name2: post_value2
}
file_types: *.*
file_types_description: All Files
file_size_limit: 102400
file_upload_limit: 10
file_queue_limit: 0
flash_url: ../swfupload/swfupload_f9.swf
flash_width: 1px
flash_height: 1px
flash_color: #FFFFFF
debug_enabled: true
----- SWFUPLOAD SETTINGS END ----
SWF DEBUG: SWFUpload Init Complete
SWF DEBUG:
SWF DEBUG: ----- SWF DEBUG OUTPUT ----
SWF DEBUG: Build Number: SWFUPLOAD 2.0.2 FP9 2008-01-07 0001
SWF DEBUG: movieName: SWFUpload_0
SWF DEBUG: Upload URL: ../featuresdemo/upload.php?get_name=get_value
SWF DEBUG: File Types String: *.*
SWF DEBUG: Parsed File Types:
SWF DEBUG: File Types Description: All Files (*.*)
SWF DEBUG: File Size Limit: 104857600 bytes
SWF DEBUG: File Upload Limit: 10
SWF DEBUG: File Queue Limit: 10
SWF DEBUG: Post Params:
SWF DEBUG: post_name2=post_value2
SWF DEBUG: post_name1=post_value1
SWF DEBUG: ----- END SWF DEBUG OUTPUT ----
SWF DEBUG:
Flash called back and is ready.
SWF DEBUG: Event: fileDialogStart : Browsing files. Multi Select. Allowed file types: *.*
SWF DEBUG: Select Handler: Files Selected from Dialog. Processing file list
SWF DEBUG: Event: fileQueued : File ID: SWFUpload_0_0
SWF DEBUG: Event: fileQueued : File ID: SWFUpload_0_1
SWF DEBUG: Event: fileQueued : File ID: SWFUpload_0_2
SWF DEBUG: Event: fileDialogComplete : Finished adding files
SWF DEBUG: StartUpload(): Starting Upload: First file in queue
SWF DEBUG: StartFile: First file in queue
SWF DEBUG: Event: uploadStart : File ID: SWFUpload_0_0
SWF DEBUG: Global Post Item: post_name2=post_value2
SWF DEBUG: Global Post Item: post_name1=post_value1
SWF DEBUG: startFile(): File Reference found. File accepted by startUpload event. Starting upload to ../featuresdemo/upload.php?get_name=get_value for File ID: SWFUpload_0_0
SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_0. Bytes: 15222. Total: 15222
SWF DEBUG: Event: uploadError: HTTP ERROR : File ID: SWFUpload_0_0. HTTP Status: 403.
SWF DEBUG: Event: uploadComplete : Upload cycle complete.
SWF DEBUG: StartUpload(): Starting Upload: First file in queue
SWF DEBUG: StartFile: First file in queue
SWF DEBUG: Event: uploadStart : File ID: SWFUpload_0_1
SWF DEBUG: Global Post Item: post_name2=post_value2
SWF DEBUG: Global Post Item: post_name1=post_value1
SWF DEBUG: startFile(): File Reference found. File accepted by startUpload event. Starting upload to ../featuresdemo/upload.php?get_name=get_value for File ID: SWFUpload_0_1
SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_1. Bytes: 32768. Total: 158876
SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_1. Bytes: 98304. Total: 158876
SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_1. Bytes: 131072. Total: 158876
SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_1. Bytes: 158876. Total: 158876
SWF DEBUG: Event: uploadError: HTTP ERROR : File ID: SWFUpload_0_1. HTTP Status: 403.
SWF DEBUG: Event: uploadComplete : Upload cycle complete.
SWF DEBUG: StartUpload(): Starting Upload: First file in queue
SWF DEBUG: StartFile: First file in queue
SWF DEBUG: Event: uploadStart : File ID: SWFUpload_0_2
SWF DEBUG: Global Post Item: post_name2=post_value2
SWF DEBUG: Global Post Item: post_name1=post_value1
SWF DEBUG: startFile(): File Reference found. File accepted by startUpload event. Starting upload to ../featuresdemo/upload.php?get_name=get_value for File ID: SWFUpload_0_2
SWF DEBUG: Event: uploadProgress: File ID: SWFUpload_0_2. Bytes: 21295. Total: 21295
SWF DEBUG: Event: uploadError: HTTP ERROR : File ID: SWFUpload_0_2. HTTP Status: 403.
SWF DEBUG: Event: uploadComplete : Upload cycle complete.
And secondly, where does the files get saved? Cant find them.
Thank you 
403
You are getting a 403. Which means "forbidden". This is something on the web server that you'll have to figure out.
SWFUpload doesn't save the file. It just uploads it to your upload_url (upload.php). You need to add PHP code that saves the file. In PHP the uploaded file is found in $_FILE["Filedata"] by default.