Posts Tagged ‘file upload using php’

How to connect to FTP and upload file using php code?

Saturday, April 3, 2010 3:15 No Comments

How to connect to FTP and upload file using php code? The following code will connect to the ftp and upload the file to the server using php code <?php $ftp_server=”HOST NAME”; $ftp_user_name=”USER NAME”; $ftp_user_pass=”PASSWORD”; $conn_id = ftp_connect($ftp_server); // login with username and password $login_result = ftp_login($conn_id, “$ftp_user_name”, “$ftp_user_pass”); if ((!$conn_id) || (!$login_result)) { echo Continue Reading »

This was posted under category: PHP Tags: ,