Forums
(@tgxn)
13 years, 10 months ago
Good to hear.
Can you mark this as resolved? Thanks.
Use regex to detect the tags, then use that.
$source = <Full Content>; preg_match("'.*?(<object .*?>.*?</object>).*?'si", $source, $match); if($match) echo $match[1];