Hello.
I am writing a php program that ftp's up a file to an individual's website.
The server I am accessing has php3.
I was only able to locate code for version 4 (see below).
$ftp_server = "ftp.mysite.com";
$ftp_user_name = "taylor";
$ftp_user_pass = "tay345";
$conn_id = ftp_connect($ftp_server);
$login_result = ftp_login($conn_id, $ftp_user_name, $ftp_user_pass);
Does anyone know what I need to do to make this work in php3?
The person who is running the server I am acessing will not upgrade at
this point to php 4.
Any help would be appreciated.
Thank you.