#サーバーの構築
・さくらのサーバーで構築
pythonをcgiで動かすには、下記のように書く必要あり
下記の#!も書く必要あり。
hehho.cgi
#!/usr/local/bin/python
print("Content-Type: text/html; charset=UTF-8")
print("")
print("Hello, World!")
最初は教本のコードをそのまま使ったらエラーに。。。
#のコメントを削除したら動くようになりました。
Go to list of users who liked
More than 3 years have passed since last update.
#サーバーの構築
・さくらのサーバーで構築
pythonをcgiで動かすには、下記のように書く必要あり
下記の#!も書く必要あり。
#!/usr/local/bin/python
print("Content-Type: text/html; charset=UTF-8")
print("")
print("Hello, World!")
最初は教本のコードをそのまま使ったらエラーに。。。
#のコメントを削除したら動くようになりました。
Register as a new user and use Qiita more conveniently
Go to list of users who liked