Tengo el siguiente script:
Código PHP:
#!/usr/bin/python
import cgi
def main():
form = cgi.FieldStorage()
password = form.getvalue("password")
import MySQLdb
conn=MySQLdb.connect(host="localhost", user="xxxx", passwd="xxxxxx", db="xxxxx")
cursor = conn.cursor()
cursor.execute('SELECT * FROM usuarios WHERE pass=password')
resultado=cursor.fetchone()
if resultado != None:
print """
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="es-cl"><head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"><title>factura</title>
<script>
................
Desde ya muchas gracias