수업소개
CGI(Common Gateway Interface)가 무엇인지 알아봅니다.
강의
소스코드
cgi_env.py
1 2 3 4 5 | #!/usr/local/bin/python3 print ( "Content-Type: text/html" ) print () import cgi cgi.test() |
cgi_env.php
1 2 3 | <?php print_r( $_SERVER ); ?> |
CGI(Common Gateway Interface)가 무엇인지 알아봅니다.
cgi_env.py
1 2 3 4 5 | #!/usr/local/bin/python3 print ( "Content-Type: text/html" ) print () import cgi cgi.test() |
cgi_env.php
1 2 3 | <?php print_r( $_SERVER ); ?> |
등록된 답변이 없습니다.