how to search for somethhing in a string with php code example
Example: php string contains
$mystring = 'abc';
$findme = 'a';
$pos = strpos($mystring, $findme);
$mystring = 'abc';
$findme = 'a';
$pos = strpos($mystring, $findme);