Hi,

i will use swfupload to upload some file names that contains accents and other spanish stuff. ...

When i upload a file with special characters, i think swfupload encode it to Utf8.

If I upload a file called áMàMéMèMíMìMóMòMúMù.doc
(its not commom, but its a example with all the accents)

echo $_FILES['filename']['name']

I get = ã¡mã mã©mã¨mã mã¬mã³mã²mãºmã¹

And then i can't put correctly the file name information to mysql.(which is in iso-8859-1)

I'm using iso-8859-1 encoding for entire web.
Php version: 4.5

How can i solve it? What i have to change in swfupload code to return the file name, at least with something similar like htmlentities(), or urlencode() ??

Thank you very mch.