Here is my prob in Brief.
I know how to upload a file to server using FTP with programming language PHP.
But is that possible to get files from another server to our server using PHP with
having the FTP Username and Password
Thanks n advance...
Fero
|
|
|
Yes, you can fetch files from FTP using PHP - using The following snippet is from the documentation:
|
|||
|
|
|
Technically, the FTP protocol allows for server-to-server transfers, called FXP. This feature is disabled by default on most FTP servers, though, for security reasons, so you would need to be able to verify/enable it before it would work. If it is enabled, you should just need to script the FXP commands and everything should work fine. |
|||
|
|
|
Here's a link to a promising function: http://www.php.net/manual/en/function.ftp-fget.php You'll need to open the local file up for dumping into, and manage the connection and whatnot, but this is the way to do it. |
|||
|
|
|
I don't think it's much different from copying a file from a directory to another, provided that you know how to open a file in an FTP Server.. |
|||
|
|