Hey everyone!
I want to connect to a FTP server,and if that is done,i want to download files and save them directly to a special
directory,but it doesnt work.
$server = 'ftp://ftp.bla bla'
$username = ''
$pass = ''
$Open = _FTP_Open('Comes in here the Directory?? ')
$Conn = _FTP_Connect($Open, $server, $username, $pass)
_FTP_FileGet($l_FTPSession, $s_RemoteFile, $s_LocalFile [, $fFailIfExists = False, [ $dwFlagsAndAttributes = 0 [, $l_Flags = 0 [, $l_Context = 0]]]])
$Ftpc = _FTP_Close($Open)
My Questions are: I got no username or pw needed,so i can erase that ,and erase it from $conn?
At the Position FTPFileGet where come things like,the download directory,where it should be saved
etc?
Would be very pleased,if someone can help me:)