Skip to content

Instantly share code, notes, and snippets.

@Kcko
Last active August 29, 2015 14:05
Show Gist options
  • Save Kcko/6fa43fe75412aa8e489c to your computer and use it in GitHub Desktop.
Save Kcko/6fa43fe75412aa8e489c to your computer and use it in GitHub Desktop.
FTP připojení a upload via PHP
$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);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment