FastCGI
Open extension to CGI that provides high performance without the limitations of server specific APIs.
Website: http://www.fastcgi.com
Platforms supported: Win32, Linux
Headers to include: fastcgi/fastcgi.bi, fastcgi/fcgiapp.bi, fastcgi/fcgi_stdio.bi
Header version: 2.4.1-SNAP-0311112127
Website: http://www.fastcgi.com
Platforms supported: Win32, Linux
Headers to include: fastcgi/fastcgi.bi, fastcgi/fcgiapp.bi, fastcgi/fcgi_stdio.bi
Header version: 2.4.1-SNAP-0311112127
Example
#include "fastcgi/fcgi_stdio.bi"
Dim As Integer count = 0
While (FCGI_Accept() >= 0)
count += 1
Print !"Content-type: text/html\r\n"
Print !"\r\n"
Print "<title>FastCGI Hello!</title>"
Print "<h1>FastCGI Hello!</h1>"
Print Using "Request number ### running on host <i>&</i>"; count; *getenv("SERVER_NAME");
Wend
Dim As Integer count = 0
While (FCGI_Accept() >= 0)
count += 1
Print !"Content-type: text/html\r\n"
Print !"\r\n"
Print "<title>FastCGI Hello!</title>"
Print "<h1>FastCGI Hello!</h1>"
Print Using "Request number ### running on host <i>&</i>"; count; *getenv("SERVER_NAME");
Wend