I'm trying to make a login script with web.py but i cant seem to figure it out!

I'm using MySQLdb for the database engine.

Here are the two approaches I have but neither seem to be working. if someone can help me it would be very much appreciated.

Method 1

class login():
    def GET(self):
        return render.login()
    def POST(self):
        i = web.input()
        d = i.username
        email = db.select('users', where='email')

        if d == email:
            return"Success!"
        else:
            return"Nahh"

Method 2

class login():
    def GET(self):
        return render.login()
    def POST(self):
        i = web.input()
        u = i.username
        p = i.password
        d = db.query("SELECT * FROM users WHERE username=i.username AND password=i.password")
        g = db.num_rows(d)
        if g == 1:
            return "Success!"
        if g != 1:
            return "Fail!"

What am I doing wrong? I'm still new to Web.py and I know the first example doesn't really make sense... but its just a theory I had if that makes sense.

link|improve this question

80% accept rate
feedback

1 Answer

Do you use MySQLdb directly, or through web.py's web.db wrapper?

If you use webpy's wrapper then you should read manual on db.select and db.query.

link|improve this answer
I have actually figured this part out. My problem now is confirming that the input is in the database with the num_rows statement. I think MySQLdb has something called countrows am I right> – Max00355 Nov 20 '11 at 6:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.