<?php
class GSCP_SSH2 {
<
##### Constructor #####
public function __construct() {
$this->socket = null;
$this->sftp = null;
$this->error = "";
}
public function Connect($host,$port = 22) {
if($host == "") return false;
$host = gethostbyname($host);
if( $this->socket =...