Skip to content
View onurasilsoy's full-sized avatar

Block or report onurasilsoy

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. PHP - Uzak Sunucudan Veri Çekip Kend... PHP - Uzak Sunucudan Veri Çekip Kendi Sunucunuza Kayıt Etme
    1
    <?php
    2
    function CurlGET($URL) {
    3
    	$CH = curl_init();
    4
        curl_setopt($CH, CURLOPT_URL, $URL);
    5
        curl_setopt($CH, CURLOPT_RETURNTRANSFER, 1);
  2. PHP - Para Birimleri (Api) Json Kodu... PHP - Para Birimleri (Api) Json Kodu - Döviz Kurları, Altın Fiyatları, Kripto Para Birimleri
    1
    <?php
    2
    function CurlGET($URL) {
    3
    	$CH = curl_init();
    4
        curl_setopt($CH, CURLOPT_URL, $URL);
    5
        curl_setopt($CH, CURLOPT_RETURNTRANSFER, 1);