PHP ftp_raw() May 14, 2012 Pramod T P It sends an arbitrary command to an FTP server Example <?php $ftpId = ftp_connect(‘ftp.phpcodez.com’); ftp_raw($ftpId, “USER user”); ftp_raw($ftpId, “PASS pass”); ftp_quit($ftpId); ?>