in reply to Re: Re: Upload an image file
in thread Upload an image file

Now I am utterly confused. You run the script on your own PC? Why are you using CGI then? Are you really, really sure you run the script on your PC? Pointing your browser to a URL that causes the script to run on the webserver doesn't make your script run on your PC. It still runs on the webserver.

With upload routine, I mean what's discussed in the CGI manual page:

$filename = $query -> param ('uploaded_file'); while (<$filename>) {print}
with the appropriate name from the form of course.

-- Abigail

Replies are listed 'Best First'.
Re: Re: Upload an image file
by Anonymous Monk on Jul 06, 2001 at 03:54 UTC
    sorry, you are right. I am not running the script from my own pc, but pointing to it via a browser.

    It's been a long day.....and I still can't get this thing to work :(