We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What should the "upload.php" look like for this script? Example code would be helpful.
The text was updated successfully, but these errors were encountered:
See something like http://www.w3schools.com/php/php_file_upload.asp. Files are uploaded like any other form. You can choose the attribute through the "name" attribute. For example:
var uploader = new Uploader({ selectButton: $('#by_upload_button'), url: "/pictures.php", name: 'image' });
That will post a file in the image attribute to the /pictures.php endpoint.
image
/pictures.php
Sorry, something went wrong.
You are right. I'll add an example in the readme file.
No branches or pull requests
What should the "upload.php" look like for this script? Example code would be helpful.
The text was updated successfully, but these errors were encountered: