1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
<?php $ftp_server="IP ADDRESS"; $ftp_user_name="FTP-USERNAME"; $ftp_user_pass="PASSWORD"; $filedir = "backupdata/";//tobe uploaded // set up basic connection $conn_id = ftp_connect($ftp_server); // login with username and password $login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass); // turn passive mode on ftp_pasv($conn_id, true); $files = scandir('backupdata'); foreach ($files as $file) { if (strlen($file) < 4) { //skipp . and .. continue; } $fullname = $filedir.$file; $remote_file = '/mybackup/database/'; $fullremotefile = $remote_file.$file; // upload a file if (ftp_put($conn_id, $fullremotefile, $fullname, FTP_ASCII)) { echo "<br>Successfully uploaded to $fullremotefile\n"; } else { echo "There was a problem while uploading $fullname to $fullremotefile\n"; } } // close the connection ftp_close($conn_id); ?> |
