PHP ftp_login() May 14, 2012 Pramod T P It can be used to log in to an FTP connection Example <?php $ftpId = ftp_connect(‘ftp.phpcodez.com’); $login_result = ftp_login($ftpId, ‘anonymous’, ‘user@phpcodez.com’); ?>