Jump to content

Case sensitive issue!?


chiprivers

Recommended Posts

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?

Link to comment
https://forums.phpfreaks.com/topic/72340-case-sensitive-issue/
Share on other sites

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.

Link to comment
https://forums.phpfreaks.com/topic/72340-case-sensitive-issue/#findComment-364832
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.