in reply to Uploading files to server

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

but im not sure this is all i need, i seem to small for me,

i need it for uploaing pics, actually.

so?? help available?

Replies are listed 'Best First'.
Re: Re: Uploading files to server
by echo (Pilgrim) on Oct 15, 2001 at 02:46 UTC
    Hmmm, what kind of pics?