Hi,
I try to upload one text file represente CSV with tab separator thru FTP connection.
i'm using :
ftp_put($connect_id, $fileFullName, $localFile, FTP_ASCII);
everything goes fine, but txt file in destination server get white line between dataline...
i try :
ftp_put($connect_id, $fileFullName, $localFile, FTP_BINARY);
and everything goes fine.
so, lets do it in binary mode.