Web Development
fastcgi.txt
Associated article: Web Extensions and Applications Using FastCGI
Tags: Web Development
Published source code accompanying the article by Scott Dybiec and Philip Rousselle in which they discuss Open Market's FastCGI protocol which addresses many of the shortcomings of both conventional CGI and server APIs. Our authors discuss the FastCGI protocol, describe the OpenMarket C programming library for FastCGI, and develop example applications using the OpenMarket library. Also see FASTCGI.ZIP
_Web Extensions and Applications Using FastCGI_
by Scott Dybiec and Philip Rousselle
Example 1:
(a)
#include <time.h>
main()
{
time_t tod;
printf("Content-type: text/htmlrn");
printf("rn");
time(&tod);
printf("The current ...


