[PHP] Re: Transfering a file

2004-02-24 Thread Catalin Trifu
Hi, You could ftp to the other server, or even http. >From php you can open a connection to the other's ftp ot http services and transfer the file from one server to the other like this Regards, C. "Mike Koponick" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Hello eve

[PHP] Re: transfering a file from one host to another

2002-04-23 Thread R. Visser
Yes there is, you can use fopen() with ftp username and password like this: fopen("ftp://username:[EMAIL PROTECTED]/path/to/yourfile";, "w"); Using this you also can open files on a HTTP server with Basic Authentication, code will be then: fopen("http://username:[EMAIL PROTECTED]/path/to/your