03-22-2010, 06:32 PM
|
#2 (permalink)
|
|
is cute and cuddly
Join Date: Mar 2008
Location: Vegas, Baby
Posts: 963
Thanks: 31
|
Well that was easy, give us a harder one!
php Code:
// This is yours, notice the assignment operator? if(($username == $_POST['username']) && ($password = $_POST['password'])){
// It should be a comparison operator: if(($username == $_POST['username']) && ($password == $_POST['password'])){
|
|
|
|