Jump to content

[SOLVED] Multiple matches for an IF


86Stang

Recommended Posts

I'm building a member creation system and in lieu of using CAPTCHA I want to use a simple question that a bot could never answer.  In my form I ask the question 'Is water wet or dry?'.  Obviously the answer is 'wet' and I've got that check working well with the following:

 

if ($_POST['security'] != 'wet'){
	$message .= "<li>Your answer in the anti-spam field is incorrect.</li>";
}

 

But if they respond with 'Wet' it kicks back the above message because of the uppercase w.  So, do I need to do multiple IFs (and if so, how) or is there something where I can tell it to be case-insensitive?

Link to comment
https://forums.phpfreaks.com/topic/146737-solved-multiple-matches-for-an-if/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.