Hi guys, I'm building a simple email functionality in my web application and would like to set it up to be able to send in attachments as well. The thing is that I want to set up the ability to upload files i.e attachemnts asynchronously. I'd like to use SWFUpload for this however 'ajax' uploaders upload the file to a location on the server - that location is most often prearranged in code or in a config file. In this case I don't want to end up with a situation where concurrent users are uploading files onto this temporary area and they overwrite each other.
How do I set it up. I'm using php MYSQL and the prototype javascript library here.