$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
?>