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>