Well here's one sample code, but you should read and try on your own before asking:
$connection = ftp_connect($server);
$login = ftp_login($connection, $ftp_user_name, $ftp_user_pass);
if (!$connection || !$login) { die('Connection attempt failed!'); }
$upload = ftp_put($connection, $dest, $source, $mode);
if (!$upload) { echo 'FTP upload failed!'; }
ftp_close($connection);
Hope it helps you getting started
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…