Advertisement
Guest User

Untitled

a guest
May 6th, 2015
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <body>
  2. <div id="ami_data"></div>
  3.  
  4. <script src="/socket.io/socket.io.js"></script>
  5. <script src="https://code.jquery.com/jquery-1.10.2.js"></script>
  6. <script>
  7.  
  8. var socket = io();
  9.  
  10. socket.on('ami_data', function (data){
  11. console.log(data);
  12. var str = document.getElementById("ami_data").innerHTML += JSON.stringify(data.peerstatus) + "rn";
  13.  
  14. });
  15. </script>
  16.  
  17. $this->db->query("CREATE DATABASE ?",[$this->input->post('db_name')]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement