You can do that two ways:
- Remove
echo $number;
andinclude
the file in your admin dashboard and just use the$number
whenever needed (preferred) or - Use
$favorites_number = file_get_contents("https://api.bloxstargames.cf/gba/v1/favorites.php");
and assign it to a variable, such asfavorites_number
, like I did above. This is easier, but not really preferred.