摘要:
1.cgi文件的代码#include "fcgi_stdio.h"#include #include int main(){ /* Initialization Code */ int count = 0; /* Start of response loop */ while (FCGI_Accept() >= 0) { //* body of response loop /*/ //FCGI_printf("Content-type: text/html/r/n" // "/r/n" // ... 阅读全文