Ok here is what I have so far, see what I am trying to do here ?
if((($conts = @file_get_contents($siteurl)) != FALSE) && (strpos(@file_get_contents("$siteurl"),"$recip")!==false))
{
echo "Link Is Found";
} else {
echo "Link Is NOT Found";
}
Now I need to add to the if statement still, If link is not within comment tags, Link is found, if a link or just the url is found with comment tags, then Link is not found.
But of course it needs to be added to the if statement.
The way you have it bpat1434 above would not work for me. I need it in the one if statement to work the way I have it going for me.