chiprivers Posted October 8, 2007 Share Posted October 8, 2007 I am creating a very simple site to be able to sell just one product. On the checkout screen I have a input box for the user to be able to enter any promotional code they may have been given. The user can recalculate their purchase total using the entered code but at present when the script checks the code it is comparing it case sensitively but I want it to be case insensitive. I am using: if ($entered_code == $required_code) {... How can I can alter this so that it is not checking the case of the letters entered? Quote Link to comment https://forums.phpfreaks.com/topic/72340-case-sensitive-issue/ Share on other sites More sharing options...
kenrbnsn Posted October 8, 2007 Share Posted October 8, 2007 Use the function strtolower() when doing the compare. Ken Quote Link to comment https://forums.phpfreaks.com/topic/72340-case-sensitive-issue/#findComment-364810 Share on other sites More sharing options...
The Little Guy Posted October 8, 2007 Share Posted October 8, 2007 strtolower wont work. if the real code is: 4rrR and they enter: 4rrR then when comapired it will do this: if(4rrr == 4rrr) these values match Quote Link to comment https://forums.phpfreaks.com/topic/72340-case-sensitive-issue/#findComment-364826 Share on other sites More sharing options...
The Little Guy Posted October 8, 2007 Share Posted October 8, 2007 instead I would use this: <?php $proCode = "~aedIDSs434r~"; $enterCode = 'aedIDSs434R'; if(preg_match($proCode,$enterCode)){ echo 'The codes Match'; }else{ echo 'The codes Do not Match.'; } ?> Change the case of 'R' at the end of $enterCode to see changes in the output. Quote Link to comment https://forums.phpfreaks.com/topic/72340-case-sensitive-issue/#findComment-364832 Share on other sites More sharing options...
kenrbnsn Posted October 8, 2007 Share Posted October 8, 2007 Why won't strtotlower work for what the OP asked? He wants the comparison to be case insensitive, not case sensitive. Ken Quote Link to comment https://forums.phpfreaks.com/topic/72340-case-sensitive-issue/#findComment-364836 Share on other sites More sharing options...
The Little Guy Posted October 8, 2007 Share Posted October 8, 2007 Oops, I thought read the title, and was suspecting he wanted case sensitivity. then I read the last words as "case sensitive", not "case insensitive". Sorry... my mistake. Quote Link to comment https://forums.phpfreaks.com/topic/72340-case-sensitive-issue/#findComment-364847 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.