Skorunu Güncellemek isteyenler için
<?php
$url = 'https://corlurehberim.com/oyun/php/save_score.php';i
$postData = array(
'nickname' => 'GELİSTİR-SMSVAR.COM', // Değiştirilebilir
'score' => '9999999999'
);
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($postData));
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>