in reply to Re: Re: Re: Uploading files to server
in thread Uploading files to server

oky

that worked thanks alot

now if im correct i only have to add a part that copys the

file to a safe place so is'nt deleted after uploaded, right??

# Read a text file and print it out while (<$file>) { print; } # Copy a binary file to somewhere safe open (OUTFILE,">>/usr/local/web/users/feedback"); while ($bytesread=read($file,$buffer,1024)) { print OUTFILE $buffer; }
am i right????

Calilo

thanks alot hopes