in reply to file upload question

If you use CGI then yes it stores it in a temporary location. Also be aware that in CGI file uploads are limited (10 megs by default I think, check the docs) and this will also return a 500 code (internal server error).

HTH

Replies are listed 'Best First'.
Re: Re: file upload question
by grahm (Novice) on May 05, 2004 at 19:10 UTC
    Thanks for that default level.. I've read that I can add this $CGI::POST_MAX=n; to adjust the default size constraints. :)