in reply to Passing a file from a form, processing, and then outputting as html

What i am trying to do is make a simple form, have an upload box for a file which contains data. This file is then processed via perl script, and then the results need to print out in the browser.

sounds like a job for ajax

http://www.w3schools.com/Ajax/Default.Asp

  • Comment on Re: Passing a file from a form, processing, and then outputting as html

Replies are listed 'Best First'.
Re^2: Passing a file from a form, processing, and then outputting as html
by mr_mischief (Monsignor) on Dec 13, 2008 at 06:02 UTC
    It's possible to do such a thing. Yet there's no reason a plain old CGI can't accept a file upload, process it, and print out results.
Re^2: Passing a file from a form, processing, and then outputting as html
by bobekdj (Initiate) on Dec 13, 2008 at 05:14 UTC
    and also, w3schools is a great site, which is why i already checked there...