Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. <?php
  2.  
  3.     require("api.php");
  4.    
  5.     $api = new ee_api();
  6.    
  7.     $info = $api->getInfo($_GET['ticker']);
  8.    
  9.     //var_dump($info);
  10.    
  11.     foreach($info['data'][0] as $key => $value){
  12.         echo "$key = $value \n<br />";
  13.    
  14.     }
  15.  
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement