Hi guys,
I have a really simple problem that has been driving me up the wall. Basically, it has to do with if/else statements. Here is my code:
Problem is, no matter what the password variable is set to, it always returns the else statement: http://fitnesstracker.tjrnetworks.co...p?password=abcPHP Code:<?php
if ($password == "abc") {
echo "password correct";
}
else {
echo "wrong";
}
?>
Any ideas what I might be doing wrong? Help would be greatly appreciated.





Bookmarks