I think what you want is:

move_uploaded_file($_FILES['imagefile']['tmp_name'],$ftpdir .
$_FILES['imagefile']['name']);

(Apologies if it wraps, that should be all one line.)



On Wed, 2003-05-28 at 12:58, Adnan wrote:
> Adam Voigt wrote:
> 
> > Hmm, what's the exact error message you get?
> > 
> > 
> > On Wed, 2003-05-28 at 12:43, Adnan wrote:
> >> Adam Voigt wrote:
> >> 
> >> > If your running under linux/unix, do:
> >> > 
> >> > chown webuser:webuser /tmp/php
> >> > 
> >> > Supplement /tmp/php with whatever upload path you have
> >> > set in your php.ini, and webuser with whatever user your
> >> > webserver runs as.
> >> 
> >> just did that, and did a
> >> 
> >> print_r($_FILES);
> >> and this is what i got
> >> Array ( [imagefile] => Array ( [name] => photo.jpg [type] => image/jpeg
> >> [tmp_name] => /tmp/php/ phpBEzrql [error] => 0 [size] => 35532 ) )
> >> 
> >> thanks for your help :)
> >> 
> >> adnan
> 
> i get this when i put:
> 
> $destination_file=$ftp_dir.$_FILES['imagefile'];
> 
> Warning: ftp_site() [function.ftp-site]: /Array: No such file or directory
> in /srv/virtual/test_barakat/en/inc/photoposted.inc.php on line 26
>  
> but if i change it to 
> 
> $destination_file=$ftp_dir.'image.jpg';
> 
> i get what i said earlier 
> 
> thanks
-- 
Adam Voigt ([EMAIL PROTECTED])
Linux/Unix Network Administrator
The Cryptocomm Group


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

Reply via email to