bilalbakirci44 Hocam buyrun çektim ve çalışıyor :)


$tarih = date("Y-m-d");
$site_link = 'http://www.malatyaeczaciodasi.org.tr/nobetci_eczaneler.php?tarih='.$tarih;
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $site_link);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
$response = curl_exec($curl);
$start = stripos($response, "
");
$end = stripos($response, "
");

$body = substr($response,$start,$end-$start);
curl_close($curl);

echo $body;
?>