Level 17
Lazy boy ! If you send me 1 BTC, I can provide the code ! (joke, lol) You can do it yourself for almost free by beginning of watching Jeff's lessons or searching in the existing discussions !
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
I found out about "cURL" on php.
but I don't know how to implement that in laravel
I have tried library like " https://github.com/ixudra/curl " but still don't understand about it.
what I want is
I want to loop and print every data within json on this api
http://api.lpkia.ac.id/v2/announcement/student
-- Thanks --
sory i found out. so it was the same with php native
$ch = curl_init();
$data = curl_setopt($ch, CURLOPT_URL, "http://api.lpkia.ac.id/v2/announcement/student/");
modified
curl_exec($ch);
Please or to participate in this conversation.