so I'm writing a script, that will fwrite()
a file. This file then needs to be sent to another server. I thought I would use the ftp wrapper, to open the file directly on the remote host.
Here's the problem. My webhost only allows url_fopen
on port 80, and they don't allow any of the ftp_
functions.
So my question is: What would I do to transfer this document to another server? I might or might not be allowed to make some sort of script on the server that is to receive the file, but I doubt I could do anything useful.