Trying to parse HTML page by tags, the first one works great:
Code: Select all
$match = stristr($content, '<body>');Code: Select all
$match2 = stristr($content2, '</body>', true);Any ways to go around it? How to do it another way?
Moderator: General Moderators
Code: Select all
$match = stristr($content, '<body>');Code: Select all
$match2 = stristr($content2, '</body>', true);