How to upload files directly to a remote server?

It’s very simple for a web-application to allow users to upload images to a website. You can use a simply HTML

However, instead of having those images uploaded to a web server – I would to have those images uploaded directly to another server.

Is this possible to have a web-application allow a user to upload images directly to another server?

The short answer is “NO”.

But in this case, you can first receive files on your server and then then write a PHP script maybe to send batch or single files to the remote server via FTP in the background.

Any other ideas?

You may also like:

Leave a comment