hello, i wish to copy certain files such as pdf files from [url]ftp://[/url] server.
i tried using copy or fopen, they always give me the error
failed to open stream: FTP server reports 530 Login incorrect.
the file i wish to copy is
[url]ftp://ftp.cs.uiowa.edu/pub/tinelli/papers/BaaTin-FROCOS-00.pdf[/url]
i'm able to view it fine through a browser, i'm not sure why can't i copy the file via php.
here's my code for the fopen part
$handle = fopen("ftp://ftp.cs.uiowa.edu/pub/tinelli/papers/BaaTin-FROCOS-00.pdf", "r");
$contents = '';
while (!feof($handle)) {
$contents .= fread($handle, 8192);
}
fclose($handle);
$handle = fopen("test.pdf", "w");
fwrite($handle, $contents);
fclose($handle);
echo "<a href=\"test.pdf\" target=\"_blank\">test.pdf</a>";