how I search for a specific string inside a longer string with noe breaks. I.E.
blahblahblahpeopleblahblah.
How would I search for "people".
You should try and attempt things like this a simple RegEx will do the trick
$string = "blahblahblahpeopleblahblah."; $find = "people"; if (preg_match("/".$find."/i",$string)) echo "Found ".$find; else echo "No Matches";