in reply to RE: Re: File Upload + recording
in thread File Upload + recording "metadata"
Calling param on an uploaded file field gives you a thing that's both a string and a filehandle. Using upload just makes sure you get a filehandle, as it's less of a security risk.To be safe, use the upload() function (new in version 2.47). When called with the name of an upload field, upload() returns a filehandle, or undef if the parameter is not a valid filehandle. $fh = $query->upload('uploaded_file');
As to your question re: big uploads: do you get any out of memory errors? 60-70k doesn't seem like *that* big a value. Could it be a POST limitation?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: RE: RE: Re: File Upload + recording
by brett (Initiate) on Jun 15, 2000 at 08:44 UTC | |
by btrott (Parson) on Jun 15, 2000 at 08:57 UTC |