PHP Classes

Hard to understand

Recommend this page to a friend!

      PHP FTP Client  >  All threads  >  Hard to understand  >  (Un) Subscribe thread alerts  
Subject:Hard to understand
Summary:No documentation or example
Messages:3
Author:Terry Woody
Date:2018-09-27 16:45:08
 

  1. Hard to understand   Reply   Report abuse  
Picture of Terry Woody Terry Woody - 2018-09-27 16:45:08
Looks like a nice simple class but with no docs or example going to be hard to use...

  2. Re: Hard to understand   Reply   Report abuse  
Picture of Paul Curto 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

?>

  3. Re: Hard to understand   Reply   Report abuse  
Picture of Terry Woody Terry Woody - 2018-09-29 18:35:13 - In reply to message 2 from Paul Curto
Thank you Paul, that will help:)