Hi 2 all,
Here i'm facing a problem with ftp_get() funtion. When I tried to download a file from remote server to local harddisk it showd me error like : "Warning: ftp_get: card02.php3: No such file or directory ".
I used :
$conn = ftp_connect("ftp server name");
$ftp_user_name="user name";
$ftp_user_pass="password";
ftp_login($conn, "$ftp_user_name", "$ftp_user_pass");
ftp_get($conn, "abc", "abcd", FTP_BINARY);
ftp_quit($conn);
?>
this script to download a file. I don't what is the problem.Please help me. This is an emmergency basis.
thanking u in advance
ash