if( $code_so_far = "ANNNNLKX" )
{
echo "Your Code is Valid";
}
Ok, here's the problem. No matter what code gets put in, it always displays "Your Code is Valid". How do I set it so that it only displays "Your Code is Valid" if the above code is entered?
Exclusions problem
Moderator: General Moderators
Code: Select all
if( $code_so_far = "ANNNNLKX" )Note the difference between using = and == ? ;)