<?php $haystack = "hello world"; $needle = "hello"; if(!strpos($haystack, $needle)) echo $haystack . " does not contain ".$needle; else echo $haystack . " contains ".$needle;
You have javascript disabled. You will not be able to edit any code.