Facebook
From Bulky Marten, 3 Years ago, written in Plain Text.
This paste is a reply to Untitled from emm - go back
Embed
Viewing differences between Untitled and Re: Untitled
$url = "http://cmf-bm.web.nku.edu.tr/DersProgram%C4%B1/0/s/3945/970";
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$source = curl_exec($ch);
curl_close($ch);

preg_match_all('#(.*?)#', $source,$info);
for($i = 0; $i <= count($info[1]) - 5; $i += 5)
{
        echo "Eczane Adı :" . $info[1][$i] . "";
        echo "Eczane Adresi :" . $info[1][$i + 1] . "";
        echo "Eczane Telefon Numarası :" . $info[1][$i + 2] . "
";
}
?>