在表单里定义了一个隐藏域的值 <input type="hidden" name="thename" value="1">
在cgi程序里提取这个值,打印出来却总是0,这可能是什么情况?
我的表单里<input type="text" name=data> 网页里输入1后,cgi程序用get方法接收后,atoi(data)转换成整形,结果输出0.用post方法接收后,n=atoi(get("CONTENT_LENGTH")); n得出的值为6.怎么会多了5.我只输入一个字符1啊。求解 下面是我的html文件
<html>
<body>
<form action="/cgi-bin/stepmotor.cgi" method="get">
<input type="text" name="data">
<input type="submit" value="确定"><input type=reset value="重置">
</form>
</body>
</html>
CGI程序有误