|
Posted by Lennart Bjφrk on 01/26/06 16:54
Sylvain,
Mais pourquoi tant de " ?
>
$resput=ftp_put($conn_id,"$destination","$source",FTP_BINARY);
<
Le Manuel PHP dit
// upload a file
if (ftp_put($conn_id, $remote_file, $file, FTP_BINARY)) {
echo "successfully uploaded $file\n";
} else {
echo "There was a problem while uploading $file\n";
}
Tu as Γ©ssayΓ©
$resput=ftp_put($conn_id,$destination,$source,FTP_BINARY);
??
Lennart BjΓΆrk
[Back to original message]
|