Servers

Biggest Secret of life

Posted on

古之欲明明德於天下者,先治其國 欲治其國者,先齊其家 欲齊其家者,先修其身 欲修其身者,先正其心 欲正其心者,先誠其意 欲誠其意者,先致其知 致知在格物

Servers

Connect and Upload to FTP server with PHP

Posted on

<?php $ftp_server = “ftp.domain.com”; /// or you can use ip address $ftp_conn = ftp_connect($ftp_server,”21″) or die(“Could not connect to $ftp_server”); $login = ftp_login($ftp_conn, “user”, “password”); $file = “t.html”; // upload file if (ftp_put($ftp_conn, “iman.txt”, $file, FTP_ASCII)) { echo “Successfully uploaded $file.”; } else { echo “Error uploading $file.”; } // close connection ftp_close($ftp_conn); FTP port […]