PHP Classes

File: put_string.php

Recommend this page to a friend!
  Classes of Paul.Ren   FTP Class   put_string.php   Download  
File: put_string.php
Role: Example script
Content type: text/plain
Description: put string as file to FTP server
Class: FTP Class
Retrieve or send files or strings data via FTP
Author: By
Last change:
Date: 20 years ago
Size: 175 bytes
 

Contents

Class file image Download
<?
require "./ftp.class.php";
$ftp = new ClsFTP("root","");
$ftp->put_string("putstring.tmp","1.mid");//put string
$ftp->p($ftp->rawlist("."));//list

$ftp->close();
?>