$data = file_get_contents("http://www.finalwebsites.com");
$pattern = "/src=[\"β]?([^\"β]?.*(png|jpg|gif))[\"β]?/i";
preg_match_all($pattern, $data, $images);
here for the $pattern
how can i get the info bw
user_agent=β info β
i want to extract the βinfoβ
part from a file
can u tell me how to add tht to the $ pattern
the file is a xml file...