Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
Administratif
/
FTP
:
php_ftp_put01.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php function uploadFTP($server, $username, $password, $local_file, $remote_file){ // connect to server $connection = ftp_connect($server); // login if (@ftp_login($connection, $username, $password)) { // successfully connected echo "OK"; }else{ return false; } ftp_pasv( $connection, true ); $path = "/www/2024_PHP/2024_PHP_02_11_2024/FTP"; echo $path ."<br>"; ///home/analogde/www/2024_PHP/2024_PHP_02_11_2024/ $contents = ftp_nlist($connection, $path); // output $contents var_dump($contents); ftp_put($connection, $remote_file, $local_file, FTP_BINARY); // Charge un fichier if (ftp_fput( $connection, $remote_file, $local_file, FTP_ASCII)) { echo "Le fichier a té chargé avec succès\n"; } else { echo "Il y a eu un problème lors du chargement du fichier\n"; } ftp_close($connection); return true; } $ftpServer = 'ftp.cluster011.ovh.net'; $ftpUser = 'analogde'; $ftpPass = 'rainbow'; uploadFTP( $ftpServer, $ftpUser, $ftpPass, "d:\\s2.png", "/www/2024_PHP/2024_PHP_02_11_2024/FTP/image.png"); ?>