$regex = '/\b'.$keyword.'\b/i'; // case insensitive match
if (preg_match($regex, $linkedin_html) == 0)
{
$this->_htmlValidationFailed++;
continue;
}
When I use this code.. i get error as unknown modifier 'v'..
pls let me know what is the problem and help me rectify.