Skip to content

Instantly share code, notes, and snippets.

View meshimee's full-sized avatar
👋
Hii!!!!!!

shimee_aktar meshimee

👋
Hii!!!!!!
View GitHub Profile
@meshimee
meshimee / age_counting.php
Created August 14, 2022 07:34 — forked from Gerst20051/age_counting.php
PHP Age Counting
<?php
// Your goal is to count how many items exist that have an age equal to or greater than 50, and print this final value.
$ch = curl_init('https://coderbyte.com/api/challenges/json/age-counting');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, 0);
$data = curl_exec($ch);
curl_close($ch);