1. EU-CGI
- Posted by "C. K. Lester" <cklester at yahoo.com> Aug 25, 2003
- 545 views
If I have this: -- mycgi.exu puts(1,"\nHello!\n") -- end mycgi.exu In my CGI-BIN folder, as well as a copy of exu.exe (or whatever it's called), then would browsing to www.mysite.com/cgi-bin/mycgi.exu cause it to display "Hello!" in my browser window? If not, what am I missing? Thanks, ck
2. Re: EU-CGI
- Posted by Elliott Sales de Andrade <quantum_analyst at hotmail.com> Aug 25, 2003
- 553 views
>From: "C. K. Lester" <cklester at yahoo.com> >Subject: EU-CGI > > >If I have this: > >-- mycgi.exu >puts(1,"\nHello!\n") >-- end mycgi.exu > >In my CGI-BIN folder, as well as a copy of exu.exe (or whatever it's >called), then would browsing to www.mysite.com/cgi-bin/mycgi.exu cause >it to display "Hello!" in my browser window? > >If not, what am I missing? > Yes, this will work, almost... First of all, you have to specify the interpreter with a shebang line, ie: #!./exu This *must* be on the first line. Also, if you want to start outputting HTML, then you will have to include the HTTP header: "Content-Type: text/html\n\n" A more complete program would be: #!./exu --mycgi.exu puts(1, "Content-Type: text/html\n\n") puts(1, "<html><head><title>Euphoria CGI</title></head>\n") --end mycgi.exw which would display an HTML page containing "Hello!!" and the title "Euphoria CGI". >Thanks, >ck _________________________________________________________________ Tired of spam? Get advanced junk mail protection with MSN 8. http://join.msn.com/?page=features/junkmail