Apache中使用CGI

Apache24

使用Visual Studio 2022

cpp 复制代码
// CGI2.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//
#include <stdio.h>
#include <stdlib.h>

#include <stdio.h>

void main()
{
    //设置HTML语言
    printf("Content-type:text/html\n\n");

    //打印hello world, 我来自CGI
    //html中的换行符为<br>
    printf("hello world, 我来自CGI !<br>");
}

这个目录下的exe文件粘贴到

Apache24\cgi-bin,改.cgi也可以

htdocs\index.html

添加如下代码,

html 复制代码
<html><body><h1>It works!</h1></body></html>
<html>
<body>
    <form method=get action="\cgi-bin\CGI2.exe">
	  <!-- #config timefmt="%y年%m月%d日"-->
		<p><!--#echo var="LAST_MODIFIED"--></p>
       i1:<input type="text" name="i1"/>
       i2:<input type="text", name="i2"/>
       <input type="submit"/>
     </form>
</body>
</html>

<!-- #config timefmt="%y年%m月%d日"-->

<p><!--#echo var="LAST_MODIFIED"--></p>

代码自己搞SSI了可以忽略

启动

如图

计算器加法程序,编译报错点重试

cpp 复制代码
#include <stdio.h>
#include <stdlib.h>

void main()
{
    //设置HTML语言
    printf("Content-type:text/html\n\n");

    int i1, i2;//定义2个变量用于接收传递的参数

    char* queryString = getenv("QUERY_STRING");

   
    sscanf(queryString, "i1=%d&i2=%d", &i1, &i2);

    printf("%d+%d=%d", i1, i2, i1 + i2);
}

示例

相关推荐
Hi-Jimmy11 小时前
【大数据】Apache Superset:可视化开源架构
大数据·apache·superset
Anna_Tong11 小时前
Apache和PHP:构建动态网站的黄金组合
开发语言·php·apache
大霸王龙2 天前
Apache AGE:基于PostgreSQL的图数据库深度解析
数据库·postgresql·apache
CURRY30_HJH2 天前
JAVA 使用apache poi实现EXCEL文件的输出;apache poi实现标题行的第一个字符为红色;EXCEL设置某几个字符为别的颜色
java·apache·excel
fly-iot3 天前
【fly-iot飞凡物联】(19):开源飞凡物联项目重启,使用go重写后端代码,感兴趣的小伙伴可以一起参加,使用apache协议开源,招募感兴趣的小伙伴!!
物联网·开源·apache
xuTao6673 天前
Apache XMLBeans 一个强大的 XML 数据处理框架
xml·apache
我还能再卷一点3 天前
小程序自定义底部tabbar,并且解决遮罩层无法遮挡住底部tabbar问题
windows·小程序·apache
榆落同学4 天前
通过Apache、Nginx限制直接访问public下的静态文件
运维·nginx·apache
佚名猫4 天前
Apache JMeter 压力测试使用说明
jmeter·apache·压力测试
IT古董4 天前
【权限管理】Apache Shiro学习教程
java·apache·shiro·权限