View Single Post
Old 03-22-2010, 06:32 PM   #2 (permalink)
delayedinsanity
is cute and cuddly
 
delayedinsanity's Avatar
 
Join Date: Mar 2008
Location: Vegas, Baby
Posts: 963
Thanks: 31
delayedinsanity is on a distinguished road
Default

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'])){
delayedinsanity is offline  
Reply With Quote