View Single Post
Join Date: Sep 2008
Posts: 13
Reputation: hirts_gal is an unknown quantity at this point 
Solved Threads: 0
hirts_gal hirts_gal is offline Offline
Newbie Poster

Re: Error in uploading file via ftp server

 
0
  #5
Sep 23rd, 2008
i success in uploading file to FTP server. i use the cording below:-

$destination_dir = $_SERVER['DOCUMENT_ROOT'];
$destination_file = $uploaddir . basename($_FILES['file']['name']);
$upload = ftp_put($conn_id,$destination_file,$source_file,FTP_ASCII );

thank you pritaeas.
Reply With Quote