Tuesday, July 21, 2009

Using PHP code connect to FTP and upload files.


The following code will be connect to FTP using php code and upload files to FTP server.

<?

$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 "authentication failed";
}
else
{

$source_file="uploads/".$fileName;
$destination_file="/htdocs/".$fileName;
$upload = ftp_put($conn_id, $destination_file, $source_file, FTP_BINARY);

}

ftp_quit($conn_id);

?>

No comments:

Post a Comment