Hello,
I'm building a PHP/MySQL poll system and I was wondering if there's any more secure method than setting a cookie + saving user IP address and checking them later.
Thank you.
Hello,
I'm building a PHP/MySQL poll system and I was wondering if there's any more secure method than setting a cookie + saving user IP address and checking them later.
Thank you.
No, only thing you could do to secure a polling system is to require registration or valid email address.
Unless you're prepared to force people to create a user account (and then lock votes to an account) this is pretty much all you can do in my experience.
The problem with poll systems is that you want to be sure users can only vote once. This problem has no solution unless you ask for personal information which cannot be forged.
Yep, user/pass is the only way. If you want to keep it really simple while using user authentication, use Facebook Connect. Nowadays almost everyone has FB and in a few minutes you could have it running.