Skip to content

Instantly share code, notes, and snippets.

@ryaan-anthony
Created November 6, 2015 03:19
Show Gist options
  • Select an option

  • Save ryaan-anthony/fa5f2f28158f5df36580 to your computer and use it in GitHub Desktop.

Select an option

Save ryaan-anthony/fa5f2f28158f5df36580 to your computer and use it in GitHub Desktop.
<?php
$hostname = '127.0.0.1';
$username = 'username';
$password = 'password';
$connection = ftp_connect($hostname);
$login = ftp_login($connection, $username, $password);
var_dump($connection, $login);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment