Symbianize Forum

Most of our features and services are available only to members, so we encourage you to login or register a new account. Registration is free, fast and simple. You only need to provide a valid email. Being a member you'll gain access to all member forums and features, post a message to ask question or provide answer, and share or find resources related to mobile phones, tablets, computers, game consoles, and multimedia.

All that and more, so what are you waiting for, click the register button and join us now! Ito ang website na ginawa ng pinoy para sa pinoy!

PCSO Lotto Result

Boopols

Apprentice
Advanced Member
Messages
92
Reaction score
0
Points
26
Possible po ba makakuha ng result sa PCSO website automatically? wala po kasing available na API ang PCSO.
 
Possible po ba makakuha ng result sa PCSO website automatically? wala po kasing available na API ang PCSO.

JSON API
URL : https://my-boss.org/pcso/api/v2/

Sample PHP Code

<?php
$pcsoapi = "https://my-boss.org/pcso/api/v2/";
$json = file_get_contents($pcsoapi);
$pcsodata = json_decode($json, TRUE);

echo 'EZ2 Results : '.$pcsodata["EZ2"]["1st"]." x ".$pcsodata["EZ2"]["2nd"];
echo '<br/>';
echo 'SUERTRES Results : '.$pcsodata["SUERTRES"]["1st"]." x ".$pcsodata["SUERTRES"]["2nd"]." x ".$pcsodata["SUERTRES"]["3rd"];
?>
 
Back
Top Bottom