I am using strpos()
for search method.. is it possible that it won't be case sensitive...
for example I have this one: this code will always return as False
$val = 'John Wrick';
$sval = 'john';
if(strpos($val, $sval) !== false){
// code here
}
is it possible that will return the conditinal value into True
?