Advertisement
Guest User

Untitled

a guest
Apr 18th, 2014
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Online PHP Script Execution</title>
  4. </head>
  5. <body>
  6. <?php
  7.  
  8.  
  9. $content = file_get_contents("the link");
  10. $data = json_decode($content,true);
  11. //loop on $data and print table $rows
  12.  
  13. foreach($data as $item) {
  14. print '<tr>'. '<td>' .$item['score'].'</td>' .'</tr>';
  15.  
  16. }
  17. ?>
  18. </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement