-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchats.php
More file actions
96 lines (88 loc) · 2.83 KB
/
chats.php
File metadata and controls
96 lines (88 loc) · 2.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?php include 'config.php'; ?>
<!DOCTYPE html>
<html>
<head>
<title>Chats <?php include 'includes/title.php'; ?></title>
<link href="assets/css/bootstrap.css" rel='stylesheet' type='text/css' />
<!-- Custom Theme files -->
<link href="assets/css/style.css" rel="stylesheet" type="text/css" media="all" />
<!-- Custom Theme files -->
<?php include 'includes/stylesheets.php'; ?>
</head>
<body>
<?php include 'includes/header.php'; ?>
<div class="container">
<div class="total-info">
<?php include 'includes/left_panel.php'; ?>
<div class="col-md-4 grid_2">
<!--Personal Chats-->
<div class="white-area"><h5>Chats</h5></div>
<div class="profile_container scroll">
<ul class="listing">
<div id="chats"></div>
<script>
$(document).ready(function(){
//initially loading chats
$("#chats").html('<center><img src="images/spinner.gif" style="width: 50px;"></center>');
$.ajax({
type: "POST",
url: "manipulates/load_chat.php",
success: function (response) {
document.getElementById("chats").innerHTML=response;
}
});
setInterval(function(){// wait for 5 secs(2)
$.ajax({
type: "POST",
url: "manipulates/load_chat.php",
success: function (response) {
document.getElementById("chats").innerHTML=response;
}
});
}, 10000);
});
</script>
</ul>
</div>
</div>
<div class="col-md-3 grid_2">
<!--Group Chats-->
<div class="white-area"><h5>Group Chats</h5></div>
<div class="profile_container ">
<ul class="listing">
<div id="group_chats"></div>
<script>
$(document).ready(function(){
//initially loading chats
$("#group_chats").html('<center><img src="images/spinner.gif" style="width: 50px;"></center>');
$.ajax({
type: "POST",
url: "manipulates/load_group_chat.php",
success: function (response) {
document.getElementById("group_chats").innerHTML=response;
}
});
setInterval(function(){// wait for 5 secs(2)
$.ajax({
type: "POST",
url: "manipulates/load_group_chat.php",
success: function (response) {
document.getElementById("group_chats").innerHTML=response;
}
});
}, 10000);
});
</script>
</ul>
</div>
</div>
<?php include 'includes/right_panel.php'; ?>
<!--Container Ends Here-->
<div class="clearfix"></div>
</div>
<script src="assets/js/myscript.js"></script>
<script src="assets/my-js/message.js"></script>
<script src="assets/my-js/group_chat.js"></script>
</div>
</body>
</html>