This looks so simple but obviously I'm doing something very wrong. This demonstrates the problem.
<?PHP
$search="a";
$total = "aNbh jK ";
if( stripos($total,$search,0) == TRUE) {
echo"found";
} else {
echo "Not found";
}
?>
$search is not found! If $search == "n" it does work.
What's wrong please?
Crusty