file uploads with special characters in php | |
---|---|
Subject: | |
special characters like # can cause some interesting and problematics with your code. You need to remove them.references: http://stackoverflow.com/questions/9838994/replace-special-characters-before-the-file-is-uploaded-using-php | |
2015-04-01 17:52:40 | gstlouis |
// Get the original file name from $_FILES // Remove any characters you dont want // Get the location of the folder to upload into // Use move_uploaded_file() | gstlouis |
2015-04-01 17:52:57 | |