lettercase
Posted: Wed Oct 06, 2010 6:56 am
There is a situation where am cross checking the info that user enters with that in our database.
basically - -
but i don't want any sort of letter case issue. At the moment if the dataValue is "Apple" and user enters "apple" -- it gives error.
I know it's pretty simple but am not sure about the syntax.
Thank you..
basically - -
Code: Select all
if($row['userValue'] == $dataValue)
{
}
but i don't want any sort of letter case issue. At the moment if the dataValue is "Apple" and user enters "apple" -- it gives error.
I know it's pretty simple but am not sure about the syntax.
Thank you..