Easy Code Share >

Python HTTP Server Accept File Upload in Two Ways

Python HTTP Server Accept File Upload in Two Ways

Upon Apache CGI, Python scripts play the role of HTTP web server that accepts both single and multiple file upload. In the article, first, we review methods of file upload in HTML browser, and then focus on Python scripts about how to receive and store files. All codes here are not complicated, so you can … Read more

Easy Code Share >

4 Practices for Python File Upload to PHP Server

4 Practices for Python File Upload to PHP Server

Python File Upload will be introduced by 4 methods. All of them have no relationship with browser clients. Instead, scripts runs to upload using command lines. We don’t mention about HTTP file upload service in Python, but the server site just use a PHP solution that has been discussed in our previous articles Single File … Read more

Easy Code Share >

Multiple File Upload in PHP, HTML, jQuery by 6 Ways

6 Methods for Multiple File Upload in PHP, HTML, AJAX, jQuery

For the topic of Multiple File Upload, there are various approaches including HTML, jQuery AJAX, and PHP. This ultimate complete guide helps you understand how to choose a proper method among them. For example, only PHP cURL method is available for the case of file transfer between hosts. All codes here are not complicated, so … Read more

Easy Code Share >

6 Methods for File Upload in PHP, HTML, AJAX, jQuery

6 Methods for File Upload in PHP, HTML, AJAX, jQuery

File Upload allow various approaches, including HTML, jQuery AJAX, and PHP. This ultimate complete guide helps you understand how to choose a proper method among them. For the case of file transfer between hosts, only PHP cURL is available. Here only single file upload is written. In next article, we will talking about multiple file … Read more