Cine are ceva timp liber, seta?i urm?torul cod pentru o sarcin? CRON <?php define('NAME', 'RST'); define('PTS', 31337); function send_post($path, $postdata) { $options = array( 'http' => array( 'content' => http_build_query($postdata), 'method' => 'POST', 'header' => implode("\r\n", array( 'Content-type: application/x-www-form-urlencoded' )) ), ); $context = stream_context_create($options); $url = "http://social.flappybird.io/leaderboard/{$path}"; return json_decode(file_get_contents($url, false, $context)); } $getdata = send_post('', array( 't' => number_format(PTS * 4.793313265998712, 15), 's' => PTS )); $update_data = send_post("update/{$getdata->token}", array( 'name' => NAME )); print_r($update_data);