Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2. function wifiid(){
  3. $get = file_get_contents('http://smansara.net/wifi.id/api.php');
  4. $decode = json_decode($get);
  5. echo "Username : ".$decode->username."<br>";
  6. echo "Passsword : ".$decode->password."<br>";
  7. echo "Keterangan : ".$decode->text."<br>";
  8. echo "<hr>";
  9. }
  10. wifiid();
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement