こんにちは私はフォームデータを受け取り、それをCOOKIEに入れる非常に単純なpython CGIスクリプトを作成しようとしています。ここに私のコードです。単純なpython CGIクッキースクリプト、フォームからデータを取得
#!/usr/bin/python
print "Content-type: text/html"
print
import Cookie, cgi, os, cgitb, smtplib, sys
cgitb.enable()
form = cgi.FieldStorage()
ID = form.getvalue('ID')
name = form.getvalue('name')
telephone = form.getvalue('telephone')
email = form.getvalue('email')
manager = form.getvalue('manager')
def set_clientCookie(ID, name, telephone, email, manager):
#create object
myCookie = Cookie.SmartCookie()
#Assign value
myCookie['ID'] = ID
myCookie['Name'] = name
myCookie['Tele'] = telephone
myCookie['Email'] = email
myCookie['Manager'] = manager
#Send back to client
print "Content-type: text/html"
print
print myCookie, "\n\n"
set_clientCookie(ID, name, telephone, email, manager)
あなたはそれが非常に基本的なものですが、私は、ログ内のスクリプトヘッダエラーの」早期の終了を受けています見ることができるように。