php check if a substring is present in POST code example
Example: php string contains
$mystring = 'abc';
$findme = 'a';
$pos = strpos($mystring, $findme);
$mystring = 'abc';
$findme = 'a';
$pos = strpos($mystring, $findme);