[PHP] uploading to another server

2001-06-24 Thread Siim Einfeldt aka Itpunk


Hi,

My scripts and the site itself are on one server, but I need to upload
files to another server. How could I do it without using ftp functions?

Thanks
Siim EInfeldt


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] uploading to another server

2001-06-24 Thread Marty Landman

At 03:13 pm 6/24/01 +0200, Siim Einfeldt aka Itpunk wrote:

My scripts and the site itself are on one server, but I need to upload
files to another server. How could I do it without using ftp functions?

You can do a post, or if the file's small enough a get. Or write a receiver 
program on the one server, and a transmitter program on the other which 
prints out the file upon (authorized) request.

My content management system SIMPL passes files from the webmaster 
interface screen on my site over to the customer's hosting server; however 
I decided to use FTP in the backend to accomplish the task.

Marty

Face 2 Interface Web Solutions
Website Creation Made SIMPL(tm)
Online Demo Available
http://face2interface.com/Home/Demo.shtml


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]