标题之前的脚本输出结束(Python,xampp,windows)

时间:2018-02-27 17:37:24

标签: python xampp

我在Windows系统上设置了我的xampp服务器,将.py添加到addhandlers并在我的htdocs中添加了以下python脚本

#!G:\Python\python
import MySQLdb
import cgi
conn = MySQLdb.connect(host="localhost",
                       user="root",
                       passwd="",
                       db="pro1")
cursor = conn.cursor()

form=cgi.FieldStorage()
uname =form.getvalue('username')
pas =form.getvalue('password')

cursor.execute("SELECT * FROM `users` WHERE `Uname` ='"+ uname + "' AND `pass` = '" + pas + "' ;")

if cursor.fetchone() is not None:
    print("Location: http://localhost/project/send.html")
    print()
    print()
else:
    print("Location: http://localhost/project/index1.html")
    print()
    print()

cursor.close()
conn.close()

运行文件后,我收到以下错误: 错误信息: 标题

之前的脚本输出结束

我已经提到了几个类似的问题,并采用了任何似乎适合我的代码的解决方案,但没有任何效果。 有什么建议?

0 个答案:

没有答案