Paul Curto - 2018-09-29 16:48:19 -
In reply to message 1 from Terry Woody
I'm sorry for not publishing an example or documentation, I hope this can help you and understand the code
<?php
@include('config/conexion_ftp.php');
$ftp = new conexion_ftp("ftp.myserverhere.com", 21, "myuserhere", "mypasswordhere"); //open connection, if the credentials are wrong, show us the error
$ftp->liberar_conexion(); //closed conexion
?>