Sorry but I didn't know which is the name of the first method
I will rephrase
which is the best method to upload a file to server ??

this:
//////
$result =
move_uploaded_file($HTTP_POST_FILES['img_6']["tmp_name"],"dir/filename.jpg")
;
$result = $result ? "OK":"NOT OK";
print $result;
////

or ... this:
/////
$conn_id = ftp_connect("$ftp_server");
$upload = ftp_put($conn_id, "$destination_file", "$source_file",
FTP_BINARY);
ftp_quit($conn_id);
////

how depends on the application ?

----- Original Message -----
From: "David Smith" <[EMAIL PROTECTED]>
To: "open-mind" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>
Sent: Friday, September 12, 2003 9:04 PM
Subject: Re: [PHP-DB] best" upload method


> > which is the "best" upload file method ?
> > file uploads or FTP commands from PHP
>
> Now that's the most open ended question I've read all day. Here, flip a
> coin. If it falls heads, FTP. If it falls tails, the other one. Even
> still, I'm not sure I understand the question: File uploads or FTP command
> from PHP? One of your options is just the question restated...
>
> Regardless and all sarcasm aside, this question depends seriously on the
> application.
>
> :)
>
> --Dave
>
>

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to