-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfetchComment.php
32 lines (28 loc) · 951 Bytes
/
fetchComment.php
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
<?php
require ('head.php');
?>
<style>
#takeNav{
display: block;
padding:20px 30px 50px 10px;
}
@media (max-width: 520px) {
#takeNav{
display: none;
}
}
</style>
<div class = 'row' '>
<div class = "col-sm-12 col-md-4 col-lg-4" style= 'padding-top:20px;' >
<!-- this is the block of code for mychat in the mychat page!-->
<?php require('comment.php') ?>
</div>
<div class = "col-sm-4 col-md-4 col-lg-4" id = 'takeNav'>
<!-- this is the block of code for newsfeed in the mychat page!-->
<?php require('queryFeeds.php') ?>
</div>
<div class = "col-sm-12 col-md-4 col-lg-4" id = 'takeNav' >
<!-- this is the block of code for mychat in the mychat page!-->
<?php require('queryGroups.php') ?>
</div>
</div>