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
Header version: from 2005
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