Re: Euphoria CGI Interface
- Posted by Irv Mullins <mountains at MINDSPRING.COM> Mar 25, 1998
- 822 views
At 07:51 PM 3/25/98 -0400, Daniel Berstein. wrote: >>Problem solved: Here's what works for me. > >Great Irv! >I'll test it soon. > >What HTTP server are you using? > Windows HTTPD -- it's got a *HUGE* set of web pages describing various CGI and web interface questions. It's free, but I had some trouble locating it, so I have posted the code on my web site for anyone who needs it. whttpd14.zip, about 666k Web servers write their data to a set of environment variables, (along with the name of an input an output file, usually in the temp directory) which you have to write to, then the server gets the data back from the output file and sends it back to requestor. For some reason, Euphoria can't find the environment variables, but a batch (.bat) file can. Therefore, you use the batch file to pass the particular variables you are interested in to Euphoria, and Euphoria writes to the output file. > Irv