Need a script javascript or php code to integrate discord to show member count in html. Thanks
Thanks, and in html what i need to put to show member count?<?php function getUserCount($id) { $jsonIn = file_get_contents('https://discordapp.com/api/guilds/' . $id . '/widget.json'); $JSON = json_decode($jsonIn, true); return count($JSON['members']); } ?>
