@@ -1,14 +1,14 @@
|
|||||||
<?php
|
<?php
|
||||||
$json = file_get_contents('https://api.torn.com/user/?selections=money&key=LDtibInYMdgVnM9n');
|
$jsonMoney = file_get_contents('https://api.torn.com/user/?selections=money&key=LDtibInYMdgVnM9n');
|
||||||
$objMoney = json_decode($json);
|
$objMoney = json_decode($jsonMoney);
|
||||||
|
|
||||||
echo '<h1>User API - Money</h1>';
|
echo '<h1>User API - Money</h1>';
|
||||||
echo '<pre>';
|
echo '<pre>';
|
||||||
print_r($objMoney);
|
print_r($objMoney);
|
||||||
echo '</pre>';
|
echo '</pre>';
|
||||||
|
|
||||||
$json = file_get_contents('https://api.torn.com/user/?selections=money&key=LDtibInYMdgVnM9n');
|
$jsonLog = file_get_contents('https://api.torn.com/user/?selections=log&key=LDtibInYMdgVnM9n');
|
||||||
$objLog = json_decode($json);
|
$objLog = json_decode($jsonLog);
|
||||||
|
|
||||||
echo '<h1>User API - Log</h1>';
|
echo '<h1>User API - Log</h1>';
|
||||||
echo '<pre>';
|
echo '<pre>';
|
||||||
|
|||||||
Reference in New Issue
Block a user