Hello, I tried many different combinations to get this to work, but with no success. As always, I try my best and spend a lot of time in trying to get something to work before I ask for help on something.
My question is, how can I pass parameter from an online form, via FTP and with PHP 4?
Here is what I have so far, but am getting an error:
$path1= "../uploads/".$HTTP_POST_FILES['ufile']['name'][0];
// START FTP
// set up basic connection
$ftp_server = "mysite.com";
$conn_id = ftp_connect($ftp_server) or die("Could not connect");
// login with username and password
$ftp_user_name = "myusername";
$ftp_user_pass = "mypassword";
// upload $file - Either FTP_ASCII or FTP_BINARY
if (ftp_fput($conn_id, $target, $HTTP_POST_FILES["ufile"]["name"], FTP_BINARY))
{
echo "Successfully uploaded $target\n";
}
else
{
echo "There was a problem while uploading $source\n";
}
// close the connection and the file handler
ftp_close($conn_id);
// END FTP