hi juliet,
let me try to help you. this works on my server.
try the following:
<FORM ACTION="<? echo $PHP_SELF ?>" METHOD=POST ENCTYPE="multipart/form-data">
<INPUT TYPE=FILE NAME="uploadfile">
<INPUT TYPE=SUBMIT NAME="go">
</FORM>
<?
$ftpserver="";
$ftpuser="";
$ftppass="";
if($go){
$conn=ftp_connect($ftpserver);
ftp_login($conn,$ftpuser,$ftppass);
$success=ftp_put($conn, $uploadfile_name, $uploadfile, FTPASCII);
ftp_quit($conn);
if($success==1) echo "GOT IT!"
}
?>
copy that to a blank script and save it as
whateveryoulike.php to your server root.
do not forget to fill in the ftpserver,user,pass....
it should at least upload the chosen file.
but i dont know about the download, either.
let me know if it worked....
never give up!