Ok, so now I want to connect to upload the file, and it's not as easy as I thought it would be. Heres the code I'm using:
$dest_file="http://sitename.com/catalog/";
$some_info="ftp.sitename.com";
$conn_id = ftp_connect($some_info);
$login_result = ftp_login($conn_id, user, pass);
$upload = ftp_put($conn_id,$dest_file,$Image, FTP_BINARY);
It's probably riddled with errors 😛 so, could someone help me?