How can I connect and upload the files through PHP Or is there code snippet which is used to login into a FTP server, and then upload a file.

0 views
Skip to first unread message

zeesh...@gmail.com

unread,
Jan 31, 2006, 6:11:00 AM1/31/06
to phpguru
<?php
$ftp_server = "";$ftp_user_name = "";$ftp_user_pass = "";

$conn_id = ftp_connect($ftp_server); // Open FTP connection to initial
directory may be /www/

$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass); //
Login with username and password

if ((!$conn_id) || (!$login_result)) { // Check the connection
echo "FTP connection has failed!";
echo "Attempted to connect to $ftp_server for user $ftp_user_name";
exit;
} else {
echo "Connected to $ftp_server, for user $ftp_user_name";
}

// Upload the file
$destination_file = "www/css/ads.htm";
$source_file = "ads.htm";

$upload = ftp_put($conn_id, $destination_file, $source_file,
FTP_BINARY); //permission needed

// Check upload status
if (!$upload) {
echo "FTP upload has failed!";
} else {
echo "Uploaded $source_file to $ftp_server as $destination_file";
}

ftp_close($conn_id); // Close the FTP connection
?>

Reply all
Reply to author
Forward
0 new messages