I have file on my local and I want to upload that file on ftp server on specific folder but I am not able to do it, Can anyone give some light on it. Below is my code.
$ftp = ftp_connect("server path",22);
ftp_login($ftp,username,password);
$ret = ftp_nb_put($ftp,
"/incoming/in/",
"http://localhost:8888/cardManagement/newfile.dat",
FTP_BINARY,
FTP_AUTORESUME);
print_r($ret);
Note- It's SFTP