- Posted by dirac1973 at hotmail.com May 01, 2001
- 2094 views
I tried to write a little cgi in Euphoria.. but it doesn't work right i use OmniHttpd server (in win2k) and when i call the cgi.ex the result is generated in a dos shell and not in the browser... how can i send the output to the browser? the cgi is very very simple: puts(1,"Content-type: text/HTML\n\n") puts(1,"<title>CGI-TEST.EX</title>") puts(1,"<html>") puts(1,"<body>") puts(1,"<H3>") puts(1,"Euphoria CGI Example:</H3>") Thanks