如何使用 CGI 为 KSH 脚本提供变量?

如何使用 CGI 为 KSH 脚本提供变量?

index.sh位于cgi-bin目录中:

#!/usr/bin/ksh

echo 'Content-type: text/html

<html><body>
<form action=FOO.KSH method=POST>
<input type=submit value=fgrep style=width:42px>
<input type=text name=name type=text autofocus size=60>
</input></form>
<br>'

福康熙

#!/usr/bin/ksh

printf "Content-type: text/html\n\n"; 

echo $1
echo $QUERY_STRING
echo $(</dev/stdin)

:如果我在index.sh 的表单中发送“a”字符串,为什么FOO.KSH 会给出一个空文件?

答案1

method=POST>

需要是

method=GET>

相关内容