首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CGI >

如何使html调用cgi程序读取一个文件的内容

2012-05-28 
怎么使html调用cgi程序读取一个文件的内容cgi程序功能是读取一个文件内容并显示到网页上,不需要从html页面

怎么使html调用cgi程序读取一个文件的内容
cgi程序功能是读取一个文件内容并显示到网页上,不需要从html页面输入什么内容所以也涉及不到post和get,请问怎么做?

[解决办法]
实例代码如下:

C/C++ code
#include <stdio.h>#include <stdlib.h>typedef struct {  int id;  char name[20] ;}stu;int main(void){  FILE *fp;  stu a;  fp=fopen("student","rb+");//假设该文件已存有学生信息  fread(&a,sizeof(stu),1,fp);  printf("Content-Type:text/html\n\n");  printf("<html>\n");  printf("<head>\n");   printf("<title>the test </titile>\n");  printf("</head>\n");  printf("<body>\n");  printf("<p>id=%d...name=%s</p>\n",a.id, a.name);  printf("</body>\n");  printf("</html>\n");    return 0;} 

热点排行