Copy this code and paste it in your HTML
// php has no "in_string" function, so here's one...
function in_string($needle, $haystack, $insensitive = 0) {
if ($insensitive) {
return (false !== stristr($haystack, $needle)) ?
true : false;
} else {
return (false !== strpos($haystack, $needle)) ?
true : false;
}
}