Advertisement
Guest User

Untitled

a guest
Nov 25th, 2014
198
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. <?php
  2. $url = 'http://149.210.151.135:8000/currentsong?sid=2';
  3.  
  4. // using file_get_contents function
  5. $content = file_get_contents($url);
  6. echo $content;
  7.  
  8. $json_array =  array('title' => $content);
  9. $json_output = json_encode($json_array);
  10.  
  11. echo "<hr>";
  12.  
  13. echo $json_output;
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement