Looks simple enough but I'm doing something wrong. I have...
<?PHP
$search="a";
$total = "aNbh jK ";
if( stripos($total,$search,0) == TRUE) {
echo"found";
} else {
echo "Not found";
}
?>
Result 'Not found'. If I set $search='N' it works (found)
What is it I don't understand please.
Crusty