Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<?php
//Dinh nghia cac bien can dung
$ftp_server = thay bang gia tri server ftp cua minh;
$ftp_user_name = thay bang username ftp cua minh;
$ftp_user_pass = thay bang password ftp cua minh;
$id = ftp_connect($ftp_server);
$connect = ftp_login($id, $ftp_user_name, $ftp_user_pass);
// kiem tra ket noi co thanh cong ko
if ((!$id) || (!$connect)) {
echo "Failed to connect to FTP server";
echo "Attempted to connect to $ftp_server for user $ftp_user_name";
exit;
} else {
echo "Connected to $ftp_server, for user $ftp_user_name";
}
// tien hanh upload
$upload = ftp_put($id, $destination_file, $source_file, FTP_BINARY);
// kiem tra xem upload co thanh cong ko
if (!$upload) {
echo "FTP upload has failed!";
} else {
echo "Uploaded $source_file to $ftp_server as $destination_file";
}
// Dong FTP
ftp_close($id);
?>
$ftp_server = thay bang gia tri server ftp cua minh;
$ftp_user_name = thay bang username ftp cua minh;
$ftp_user_pass = thay bang password ftp cua minh;