How can I change the strpos to make it non case sensitive. The reason is if the product->name is MadBike and the search term is bike it wil
product->name
'i' in stripos() means case insensitive
if(stripos($product->name, $searchterm) !== false){ //'i' case insensitive echo "Match = ".$product->link."; }