In this small post i will show you how to upload file on the ftp server using php. As we know there are many ftp function in php but whenever you want to upload file in ftp using php at that time ftp put function is useful.
Here, we will upload file to the FTP server in php.
ftp_put(ftp_conn, remote_file, local_file, mode, startpos);
ftp_conn - ftp_conn is required parameter and it is use to specifies the FTP connection.
remote_file - remote_file is required parameter and it is use to specifies the file path to upload path.
local_file - local_file is required parameter and it is use to specifies the path of the file to upload.
mode - mode is optional parameter and it is use to specifies the transfer mode. It has 2 possible values: 1) FTP_ASCII 2) FTP_BINARY.
startpos - startpos is optional parameter and it is use to specifies the position in the remote file to start uploading to.
<?php
// connect to FTP server
$ftp_server = "ftp.example.com";
$ftp_conn = ftp_connect($ftp_server) or die("Could not connect to $ftp_server");
//login to FTP server
$login = ftp_login($ftp_conn, $ftp_username, $ftp_userpass);
$file = "localfile.txt";
// upload file
if (ftp_put($ftp_conn, "serverfile.txt", $file, FTP_ASCII))
{
echo "Successfully uploaded $file.";
}
else
{
echo "Error uploading $file.";
}
// close connection
ftp_close($ftp_conn);
?>
Hello, web developers! In this article, we'll see how to create multi-step form wizards with validation in vue.js. I...
Jul-24-2024
In this article, we will see how to install angular in ubuntu. Angular is a framework, library, assets, a...
May-09-2022
In this post we will see how to store multiple checkbox value in database using laravel. Whenever you want to save multi...
May-14-2021
In this article, we will see how to auto select a country using IP lookup in jquery. Here, we will learn about auto...
May-15-2023