- Friday, February 20, 2009, 17:33
- PHP, Tutorial
- 6,173 views
Usually users upload their file to a server through a web form as shown below:
The HTML form looks something like this:
Filename:
...
Full story
- Tuesday, November 18, 2008, 16:23
- AJAX, How-To, JavaScript, Tutorial
- 6,539 views
File uploading using AJAX is not possible. AJAX doesn't actually post forms to the server, it sends selected data to the server in the form of a POST or GET request. As javascript is not capable of grabbing the file from the users machine and sending it to the server, it's just not possible with AJAX. You have to resort to regular old form submit.
If ...
Full story