diff options
Diffstat (limited to 'FtechWebring.php')
-rw-r--r-- | FtechWebring.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/FtechWebring.php b/FtechWebring.php new file mode 100644 index 0000000..bae77e8 --- /dev/null +++ b/FtechWebring.php @@ -0,0 +1,10 @@ +<?php + +// We fetch the API +$raw = @file_get_contents("https://jae.fi/webring/members"); + +// If it failed, we stop here +if ($raw === false) { + // We decode our JSON + $data = json_decode($raw, true); +}
\ No newline at end of file |