I built a command-line program and I\'d like to build a web interface to let users around the world try the application easily.
I mean, the interface should have textfie
I would make a static HTML screen with a form which, when POSTed, invokes a CGI script in, say, Perl (or whichever language you are familiar with). The script would extract necessary parameters, "feed" them to your CLI program, capture its output via redirection or pipe (depending on the environment) and format the output as the HTML response.