i need help filling in the blank
<?php
$search ="Find this string - NOW";
$url = "http://www.domainimusing.com";
$string = file_get_contents($url);
//help here
//use a regex or string function to find the $search term within $string
//if found return $result to be true
if ($result)
{
echo "String was found!";
}
else
{
echo "String not found!";
}
?>
i HONESTLY need a good lesson in writing and understanding regex's... can anyone recommend a good tutorial site or something with a progressive learning curve for using and writing regex's???