PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php $ch = file_get_contents('https://groups.roblox.com/v2/groups/16834580/wall/posts?limit=10&sortOrder=Asc'); $data = json_decode($ch)->data; foreach ($data as $d){ echo $d->poster->user->displayName . PHP_EOL; echo $d->body . PHP_EOL; echo $d->created . PHP_EOL; echo '<div class="bg-light-purple rounded-md"><div class="grid gap-4 grid-cols-1 md:grid-cols-2 mb-8 overflow-hidden"><div><img src="https://cdn-live.prm.ol.epicgames.com/prod/8fecee4529a6706be12bf9a46551cfe481e9a969b67a7ba990cea07782c5ebd8ba43306a73f42f3a085042297993ef14-5f2e6d24-86fe-4dcf-be26-945c47d690eb.jpeg?width=1920" alt="Fortnite Picture"></div><div class="p-2 md:p-4"><h3 class="text-xl text-yellow-500">A New Beginning Awaits</h3><p class="font-sans text-white pt-2">Ride the Trail Thrasher Dirt Bike, power up with Reality Augments, try out new weapons and more as you explore the Island!</p></div></div></div>';} //print_r($data);
Show:  
Copy Clear