-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex1.php
More file actions
176 lines (147 loc) · 7.89 KB
/
index1.php
File metadata and controls
176 lines (147 loc) · 7.89 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
<?php
include_once 'dbh1.inc.php';
?>
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Main page</title>
<link rel="stylesheet" href="style2.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="script1.js"></script>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 15px;
text-align: left;
}
#t01 {
width: 30%;
background-color: #00FFFF;
}
</style>
</head>
<body>
<!--header area start-->
<input type="checkbox" id="check" checked>
<header>
<div class="show-section" data-id="4">
<label for="check">
<i class="fas fa-bars" id="sidebar_btn"></i>
</label>
</div>
<div class="left_area">
<h3>Meet <span>World</span></h3>
</div>
<div class="right_area">
<p class="show-section" data-id="3"><a href="delete.php?n=$[Name]" class="logout_btn">Leave</a></p>
</div>
</header>
<!--header area end-->
<!--sidebar start-->
<div class="sidebar">
<!-- <p class="show-section" data-id="3"><a href="#"><i class="fas fa-home"></i><span>Dashboard</span></a></p> -->
<p class="show-section" data-id="1"><a href="#"><i class="fas fa-desktop"></i><span>Lounge</span></a></p>
<p class="show-section" data-id="2"><a href="#"><i class="fas fa-network-wired"></i><span>Networking</span></a>
</p>
<!-- <a href="#"><i class="fas fa-table"></i><span>Tables</span></a> -->
<!-- <a href="#"><i class="fas fa-terminal"></i><span>Console</span></a> -->
<!-- <a href="#"><i class="fas fa-sliders-h"></i><span>Settings</span></a> -->
<p class="show-section" data-id="5"><a href="#"><i class="fas fa-terminal"></i><span>Console</span></a></p>
<p class="show-section" data-id="6"><a href="#"><i class="fas fa-gamepad"></i><span>Gaming</span></a></p>
</div>
<!--sidebar end-->
<div class="content" id="content">
<br>
<br>
<br>
<br>
<div class="Sections">
<div id="Dashboard">
<section data-id="3">
<iframe src="//www.groupboard.com/gb/814680" width="100%" height="600" scrolling="no" frameborder="0"></iframe>
</section>
</div>
<div id="lounge">
<section data-id="1">
Lounge
<?php
$sql = "SELECT * FROM join_event;";
$result = mysqli_query($conn, $sql);
$resultCheck = mysqli_num_rows($result);
?>
<table id="t01" style="border:1px solid black;margin-left:auto;margin-right:auto;">
<thead>
<tr>
<th>Name</th>
</tr>
</thead>
<?php
if ($resultCheck > 0) {
foreach ($result as $row )
{
?>
<tbody>
<tr>
<td><?php echo $row['Name']; ?></td>
</tr>
</tbody>
<?php
}
}
else {
echo "No record ";
}
?>
</table>
</section>
</div>
<div id="networking">
<section data-id="2">
<link rel="stylesheet" href="network.css">
<ul class="cc">
<div class="content2">
<li class="container"><img class="bb" src="https://cdn.pixabay.com/photo/2013/07/12/15/35/community-150125_1280.png" alt="">
<a href="meet.html" title="Team info" class="button">Main Table</a>
</li>
<li class="container"><img class="bb" src="https://cdn.pixabay.com/photo/2018/03/21/06/30/people-3245739_1280.png" alt="">
<a href="meet.html" title="Team info" class="button">Table 1</a></li>
<li class="container"><img class="bb" src="https://cdn.pixabay.com/photo/2018/03/21/06/30/people-3245739_1280.png" alt="">
<a href="meet.html" title="Team info" class="button">Table 2</a></li>
<li class="container"><img class="bb" src="https://cdn.pixabay.com/photo/2018/03/21/06/30/people-3245739_1280.png" alt="">
<a href="meet.html" title="Team info" class="button">Table 3</a></li>
<li class="container"><img class="bb" src="https://cdn.pixabay.com/photo/2018/03/21/06/30/people-3245739_1280.png" alt="">
<a href="meet.html" title="Team info" class="button">Table 4</a></li>
<li class="container"><img class="bb" src="https://cdn.pixabay.com/photo/2018/03/21/06/30/people-3245739_1280.png" alt="">
<a href="meet.html" title="Team info" class="button">Table 5</a></li>
<li class="container"><img class="bb" src="https://cdn.pixabay.com/photo/2018/03/21/06/30/people-3245739_1280.png" alt="">
<a href="meet.html" title="Team info" class="button">Table 6</a></li>
<li class="container"><img class="bb" src="https://cdn.pixabay.com/photo/2018/03/21/06/30/people-3245739_1280.png" alt="">
<a href="meet.html" title="Team info" class="button">Table 7</a></li>
<li class="container"><img class="bb" src="https://cdn.pixabay.com/photo/2018/03/21/06/30/people-3245739_1280.png" alt="">
<a href="meet.html" title="Team info" class="button">Table 8</a></li>
</ul>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="net.js"></script>
</section>
<section data-id="5">
<iframe width="1200px" height="600px"
src="https://gcc.godbolt.org/e#g:!((g:!((g:!((h:codeEditor,i:(fontScale:14,fontUsePx:'0',j:1,lang:c%2B%2B,source:'//+Type+your+code+here,+or+load+an+example.%0Aint+square(int+num)+%7B%0A++++return+num+*+num%3B%0A%7D'),l:'5',n:'0',o:'C%2B%2B+source+%231',t:'0')),k:50,l:'4',n:'0',o:'',s:0,t:'0'),(g:!((h:compiler,i:(compiler:g111,filters:(b:'0',binary:'1',commentOnly:'0',demangle:'0',directives:'0',execute:'1',intel:'0',libraryCode:'0',trim:'1'),fontScale:14,fontUsePx:'0',j:1,lang:c%2B%2B,libs:!(),options:'',selection:(endColumn:1,endLineNumber:1,positionColumn:1,positionLineNumber:1,selectionStartColumn:1,selectionStartLineNumber:1,startColumn:1,startLineNumber:1),source:1),l:'5',n:'0',o:'x86-64+gcc+11.1+(Editor+%231,+Compiler+%231)+C%2B%2B',t:'0')),k:50,l:'4',n:'0',o:'',s:0,t:'0')),l:'2',n:'0',o:'',t:'0')),version:4"></iframe>
</section>
<section data-id=6>
<div class="info ">
<p><b> This section is for the entertainment purpose . Will also help to reduce anxiety level and keep your spirits high during the event. Will help in keeping good mental health as well . Hope you have a great time.</b> </p>
<p><b>Enjoy!</b></p>
</div>
<script src="https://cdn.htmlgames.com/embed.js?game=BubbleSpinner&bgcolor=white" ></script>
</section>
</div>
</div>
</div>
</div>
</body>
</html>