çekmeye çalıştığım site https://adres.nvi.gov.tr/VatandasIslemleri/AdresSorgu
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://adres.nvi.gov.tr/Harita/ilceListesi");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "ilKimlikNo=6");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$sonuc = curl_exec($ch);
curl_close($ch);
echo $sonuc;