Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <style>
- #output, #bt_send{
- font-size:75px;
- }
- </style>
- <script src="jquery-1.10.1.min.js"></script>
- <script>
- $(document).ready(function(){
- setInterval(function(){
- $.get("read.php", function(msg){
- $("#output").html(msg);
- });
- },3000);
- $('#bt_send').click(function(){
- msg=$('#msgbx').val();
- $('#msgbx').val('');
- $('#output').html(msg);
- $.get('send.php', { msg: msg});
- });
- });
- </script>
- </head>
- <body>
- <div id='output'>
- <?php include('read.php');?>
- </div>
- <textarea id='msgbx' rows='4' cols='50'></textarea><br>
- <button id='bt_send'>Send</button>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement