<?php
$url="example.com";
$get=addslashes(file_get_contents($adres));
$filter = "#/<\b\>(.*?)<\/b>/#i";
preg_match_all($get, $filter, $result);
echo $result[0][0];
?>
While trying to work with these codes i get such an error like: "Unknown modifier '<'"
I read other answers about this problem. i know that the problem is about delimiters but what is the solution? Thanks for your helps from now on..