Advertisement
Guest User

Untitled

a guest
Jan 25th, 2020
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. $url='https://api.faceit.com/match/v2/match/1-3c85bc06-22da-4604-8a54-8ed69ef30d92';
  2. $result = get_data($url);
  3. $matchid = $result[payload][clientCustom][match_id];
  4. $TeamA_score = $result[payload][clientCustom][team1_score];
  5. $TeamB_score = $result[payload][clientCustom][team2_score];
  6. echo("<p>Team 1 Score: ".$TeamA_score."</p>");
  7. echo("<p>\r\nTeam 2 Score: ".$TeamB_score."</p>");
  8. echo("Match: ".$matchid);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement