What is the best PHP AJAX file upload class? #ajax file upload
Edit
by Joshua Njovu - 10 years ago (2014-11-12)
I want to upload files using AJAX
| PHP programmers may always want to upload their files using AJAX but there are not so many examples about this. |
Ask clarification
3 Recommendations
File Upload With AJAX: Handle file uploads and returns JSON response
This is a simple class that can handle file uploads and returns JSON response.
It can take the $_FILES array as parameter and checks if a file with a given input name was uploaded successfully.
If the file was received, it is moved to the uploads directory.
The class creates an array with the response details and outputs the array JSON encoded so it is easier for the JavaScript to handle.
The details include a success message with a download link, and the name of the file that was stored. If the upload fails, an error message is returned.
| by Bharat Parmar package author 455 - 8 years ago (2016-04-11) Comment
User can upload the file with AJAX. Once the file will be selected by User, the Script will confirm user to upload file or not. If user allow to upload file, it will be uploaded to the server and return the File Name and Download Link of the uploaded file. |
PHP Multi File Uploader: Validate and process one or more file uploads
This class can validate and process one or more file uploads.
There is one class that can validate and process individual file uploads. It checks if the file name extension and MIME type is one of the allowed, as well if the file size is below the allowed size limit.
The class can create the destination directory if it does not exists and move the uploaded file to that directory.
Another class calls the first to validate and process multiple files being uploaded.
| by MOUSTAFA ELGAMMAL package author 215 - 9 years ago (2016-02-29) Comment
you can upload many file, but this not Ajax. |
- 1 Comment
1.
by Dave Smith - 9 years ago (2016-03-02) Reply
AJAX required in request
Class that generates HTML forms supporting:
- Multiple inputs may be interconnected in such way that client side events that occur on one input can trigger actions on the context of other inputs. Developers may use input interconnection support without writing Javascript code.
- Can be extended with new types of input controls plug-in classes.
- Custom input plug-in classes can be used to support for handling client site events on the server side without submitting the form or redrawing the whole form page
- Some control plug-in classes are made available:
* AJAX based form submission (without reloading the whole page)
* Auto-complete text inputs
* Select a location on a map using Google Maps API
* Calendar date input
* CAPTCHA test to prevent automated access by robots
* Linked select input to switch select options when the value of another input changes. An unlimited number of selected can be linked in cascade. Additional plug-in subclasses are provided to retrive option groups from a MySQL database or many other SQL databases using the Metabase PEAR::MDB2 PHP database abstraction layer APIs
* Manage animations that apply visual effects to the page form elements, like: fade-in, fade-out, show, hide, update content, etc..
- XHTML compliant output.
- Load submitted form field values even with register_globals option Off and strip slashes when magic_quotes_gpc option is On.
- Keyboard navigation support:
* Attachment of labels with activation keys to each form field.
* Tab navigation order index.
- Built-in server side (PHP based) and client side (Javascript 1.0 or better) field validation for:
* E-mail address
* Credit card numbers (Visa, Mastercard, American Express, Discover, Diners Club, Carte Blanche, enRoute, JCB, any of these or even determined by a select field).
* Regular expressions.
* Field not empty.
* Field equal to another (useful for password confirmation fields).
* Field different from another (useful for reminder fields that must not be equal to the actual password).
* As set (for check boxes, radio buttons and select multiple fields).
* As integer number (with range limitation).
* As floating point number (with range limitation).
* Programmer defined client and server validation functions.
- Highlight invalid fields rendering them distinct CSS styles
- Security attack prevention by optionally discarding invalid values passed in fields that could not be edited by users but may be spoofed by attackers.
- Option to define a value that, when used in a field, it is accepted without performing any of the validations defined for the field.
- Ability to stop the user from submiting a form more than once inadvertdly.
- Sub form validation (validate only smaller set of field depending on the submit button that was used).
- Composition and generation of the form HTML output with fields displayed as fully accessible or in read-only mode.
- Generation of Javascript functions (useful to set to the page ONLOAD event):
* Set the input focus to a field.
* Select the text of a field.
* Set the input focus and select the text of a field.
* Enable and disable input fields
- Automatic capitalization of the text of a field:
* Upper case.
* Lower case.
* Word initials
- Replacement of text field expressions to perform adjustments like trimming whitespace or auto-complete values based on rules defined by regular expressions
- Compose forms with templates using plain HTML files with embedded PHP code or using the Smarty template engine with a supplied pre-filter plugin
- Etc.
| by Manuel Lemos package author 26695 - 10 years ago (2014-11-15) Comment
You can either upload files via AJAX 2 in more recent browsers that support it, or you can use an hidden iframe and change the target attribute of the form to the iframe name.
This general purpose forms class uses the later, so it works well even in older browsers.
It uses the form_ajax_submit.php plugin to submit forms via iframe based AJAX requests. This plugin submits any form inputs you have in your forms, so it may include file or other types of inputs.
You can take a look at the test_ajax_submit.php example script to learn how it works.
The AJAX form submission demo shows that example script in action. |
- 1 Comment
3.
by Ilyos olimov - 8 years ago (2016-05-27) in reply to comment 2 by Manuel Lemos Reply
Hi bro, i need uploader for my blog script. now i can upload multiple photos but it is uploading bottom of the article and it is hard to understand
If i write text then uload photo and then write text upload photo and after inserting i could view it like this it will be perfect. Can you help me