$conn_id = ftp_connect("www.yoursite.com"); $login_result = ftp_login($conn_id, "username", "password"); if ((!$conn_id) || (!$login_result)) { echo "FTP connection has failed!"; exit; } else { echo "Connected"; } // get the file $local = fopen("local.txt","w"); $result = ftp_fget($conn_id, $local,"httpdocs/trlog.txt", FTP_BINARY); // check upload status if (!$result) { echo "FTP download has failed!"; } else { echo "Downloaded "; } // close the FTP stream ftp_close($conn_id);
You need to create an account or log in to post comments to this site.