Como dar variável a um script KSH com um CGI?

1

index.sh está no diretório 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>'

FOO.KSH

#!/usr/bin/ksh

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

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

Q : Por que o FOO.KSH fornece um arquivo vazio se eu enviar uma string "a" na forma do index.sh?

    
por gasko peter 13.08.2013 / 09:45

1 resposta

0

method=POST>

precisava ser

method=GET>
    
por 13.08.2013 / 11:18

Tags