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>

관련 정보