in reply to cgi upload files

Hai,
Upto my knowledge you have to use this line
$upload_handle = $query->upload("data");
This will return file handle using which u can read and store the file on server. Later u can read and show it to user.

Check the following link for more info.Upload File


--Prasanna.K

Replies are listed 'Best First'.
Re^2: cgi upload files
by Anonymous Monk on Jun 17, 2005 at 10:04 UTC
    thanks for the tips. managed to correct the problem