Code: Select all
function checkBackLink () {
// get the backlink we're looking for
#echo 'im looking for '.$this->backLink.'';
// now we have what we need to search for
if (strpos($this->sourceCode, $this->backLink) === TRUE) {
$this->hasBackLink = TRUE;
} else {
$this->hasBackLink = FALSE;
}
}now its there, ive checked the source matches exactly, i dont understand why its returning false, im doing no htmlentities() (ie < is a < not <)
can someone help me out here
link to script: http://82.13.252.91/example.php
it has var_dump so u can see what its looking for
tbh im baffled