Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- session_start();
- ?>
- <html>
- <head>
- <script>
- <?php
- include("jquery.js");
- ?>
- function sendMessage()
- {
- $.ajax({
- type: "POST",
- url: "post.php",
- async: false,
- data: "message="+$("#myMessage").val(),
- success: function(msg){
- refreshChat();
- }
- });
- },
- function refreshChat()
- {
- $.ajax({
- type: "POST",
- url: "loadchat.php",
- success: function(msg){
- $("#chatArea").html(msg);
- }
- });
- }
- </script>
- </head>
- <body>
- <table>
- <tr>
- <td>
- <div id=”chatArea”></div>
- </td>
- </tr>
- <tr>
- <td>
- <textarea id=”myMessage”></textarea>
- </td>
- </tr>
- <tr>
- <td>
- <input type="button" VALUE="Send" onClick="onclick=”sendMessage();” style="margin: 0px;">
- <?php echo $_SESSION['username']; ?>
- </td>
- </tr>
- </table>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment