-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPHP-Ajax_code
More file actions
209 lines (168 loc) · 8.2 KB
/
Copy pathPHP-Ajax_code
File metadata and controls
209 lines (168 loc) · 8.2 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
//PHP code that fetches object and data from table
//Written in deprecated mysql, You might want to change to mysqli
if(isset($_POST["getrar"]) && $_POST["getrar"]!="")
{
$sql = "SELECT * FROM broadcast WHERE ID = '".$_POST["getrar"]."' ";
$query = mysql_query($sql, $connect) or die("could not fetch records");
$row = mysql_fetch_assoc($query);
$ff = "broadcastpics/";
$repsql = "SELECT * FROM reply WHERE TopicID = '".$_POST["getrar"]."' ORDER BY PostID ASC ";
$repquery = mysql_query($repsql, $connect) or die ("error occured");
while ($ross = mysql_fetch_assoc($repquery)) {
$kk = AnyContent("Picture", "users", "ID", $ross["UserID"]);
$bb = '<img src="profilepics/'.$kk.'" width="20" height="20">';
$top = $ross["Topic"];
$des = $ross["Description"];
$schlname = AnyContent("SchoolName", "schools", "SchoolID", $ross["SchoolID"]);
$rg = AnyContent("Regname", "users", "ID", $ross["UserID"]);
$role = AnyContent("Role", "users", "ID", $ross["UserID"]);
$ft = AnyContent("Firstname", "users", "ID", $ross["UserID"]);
$sr = AnyContent("Surname", "users", "ID", $ross["UserID"]);
$zz = $ross["AccessLevel"] == 1;
if(isset($ross["AccessLevel"]) && $_SESSION["accesslevel"] == 1 || $_SESSION["accesslevel"] == 2) {
$thereply .= '
<div style="background-color: #D6D6D6;">
<div style="line-height:1;">
<div>
'.$bb.'
<b>'.$ft.''." ".'
'.$sr.''." ".'
'.$rg.''." ".'</b>
<a href="deletecomment2.php?did='.$ross["PostID"].'&ID='.$ross["TopicID"].'" class="reg" onclick="return confirm("Are you sure you want to delete this comment?");">Delete</a>
<br>
<h6><b>On: '.date("jS-M-Y", strtotime($ross["CreatedOn"])).' at '.date("g:ia", strtotime($ross["CreatedOn"])).' by '.AnyContent("SchoolName", "schools", "SchoolID", $ross["SchoolID"]).' '.AnyContent("Role", "users", "ID", $ross["UserID"]).' '.AnyContent("State", "state", "ID", $vv).' | '.$ross["CreatedBy"].'</b>
</h6>
</div>
<p>'.$des.'</p>
</div>
</div>
';
}
elseif($ross["UserID"]==$_SESSION["duid"]) {
$thereply .= '
<div style="background-color: #D6D6D6;">
<div style="line-height:1;">
<div>
'.$bb.'
<b>'.$ft.''." ".'
'.$sr.''." ".'
'.$rg.''." ".'</b>
<a href="deletecomment2.php?did='.$ross["PostID"].'&ID='.$ross["TopicID"].'" class="reg" onclick="return confirm("Are you sure you want to delete this comment?");">Delete</a>
<br>
<h6><b>On: '.date("jS-M-Y", strtotime($ross["CreatedOn"])).' at '.date("g:ia", strtotime($ross["CreatedOn"])).' by '.AnyContent("SchoolName", "schools", "SchoolID", $ross["SchoolID"]).' '.AnyContent("Role", "users", "ID", $ross["UserID"]).' '.AnyContent("State", "state", "ID", $vv).' | '.$ross["CreatedBy"].'</b>
</h6>
</div>
<p>'.$des.'</p>
</div>
</div>
';
}
else {
$thereply .= '
<div style="background-color: #D6D6D6;">
<div style="line-height:1;">
<div>
'.$bb.'
<b>'.$ft.''." ".'
'.$sr.''." ".'
'.$rg.''." ".'</b>
<br>
<h6><b>On: '.date("jS-M-Y", strtotime($ross["CreatedOn"])).' at '.date("g:ia", strtotime($ross["CreatedOn"])).' by '.AnyContent("SchoolName", "schools", "SchoolID", $ross["SchoolID"]).' '.AnyContent("Role", "users", "ID", $ross["UserID"]).' '.AnyContent("State", "state", "ID", $vv).' | '.$ross["CreatedBy"].' </b>
</h6>
</div>
<p>'.$des.'</p>
</div>
</div>
';
}
}
$fd = array('picture' => '<img class="img-responsive" src="broadcastpics/'.$row["PictureVideo"].'">', 'reply' => $thereply);
echo json_encode($fd);
}
//code goes wherever you want to call the picture
<a href="javascript:;" class="mdk" imn="<?php echo $value["ID"]; ?>" data-toggle="modal" data-target="#modal-3">
<img class="img-responsive" src="broadcastpics/<?php echo $value["PictureVideo"]; ?>" ></a>
//Modal code that pops up when the above link is clicked
<!-- ========================================================================
FOR IMAGE ONLY
============================================================================-->
<div class="modal fade" id="modal-3" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div align="center" class="modal-body" id="displaypicture"></div>
<div class="modal-body" id="displayreply3"><!-- DIV FOR REPLY -->
<!-- ========================== READS ALL COMMENTS ABOUT THE PARTICULAR BROADCAST =================================-->
<div class="modal-body" id="repliesdiv"></div>
</div><!-- DIV FOR REPLY3 -->
<div class="modal-footer">
<a href="#" class="btn btn-default" data-dismiss="modal">close</a>
</div>
</div><!-- MODAL content for ID-3 ENDS -->
</div><!-- MODAL dialog for ID-3 ENDS -->
</div><!-- MODAL WINDOW ID-3 ENDS -->
<!-- ========================================================================
FOR COMMENTS ONLY
============================================================================-->
<div class="modal fade" id="modal-1" tabindex="-1" role="dialog">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
</div>
<div class="modal-body" id="displayreply2">
<!-- =========================================================================
READS ALL COMMENTS ABOUT THE PARTICULAR BROADCAST
===============================================================================-->
<div class="modal-body" id="repliesdiv2"></div>
</div>
<div class="modal-footer">
<a href="#" class="btn btn-default" data-dismiss="modal">close</a>
</div>
</div><!-- MODAL content for ID-1 ENDS -->
</div><!-- MODAL dialog for ID-1 ENDS -->
</div><!-- MODAL WINDOW ID-1 ENDS -->
//This goes the bottom of the page
//For Image when clicked
$('.mdk').click(function(){
var getpic = $(this).attr('imn');
var getpic2 = $(this).attr('dmk');
$('#TopicID').val(getpic);
$('#TopicTitle').val(getpic2);
$.ajax({
url:'appfunctions.php',
type:'post',
data:'getrar='+getpic,
dataType: "json",
success:function(e)
{
// alert(e.title);
// alert(e.content);
//alert(JSON.stringify(e));
$('#displaypicture').html(e.picture);
$('#repliesdiv').html(e.reply);
}
});
});
//For comment button
$('.mdk2').click(function(){
var getpic = $(this).attr('imn');
var getpic2 = $(this).attr('dmk');
$('#TopicID2').val(getpic);
$('#TopicTitle2').val(getpic2);
$.ajax({
url:'appfunctions.php',
type:'post',
data:'getrar='+getpic,
dataType: "json",
success:function(e)
{
// alert(e.title);
// alert(e.content);
//alert(JSON.stringify(e));
$('#repliesdiv2').html(e.reply);
}
});
});