-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample.php
More file actions
47 lines (35 loc) · 957 Bytes
/
Copy pathsample.php
File metadata and controls
47 lines (35 loc) · 957 Bytes
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
<?php require('include/navigationbar.php'); ?>
<!DOCTYPE html>
<html>
<link rel="stylesheet" type="text/css" href="css/index.css">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
</head>
<body>
<?php
require('include/database.php');
$query1 = $con->query("SELECT * FROM common_bot ");
$row = $query1->fetch_assoc();
?>
<div class="container-fluid row">
<div class="col-md-6 ">
<br><br><br><br>
<h1 class="h1 ">
<?php echo $row['Mainline']; ?>
</h1>
<center><h3><?php echo $row['Subline']; ?></center>
<br>
</div>
<div class="col-md-6">
<img class="div2" src="ImageLogo/chatgif.gif">
</div>
<div class="col-sm-12">
<br><br>
<center><h2><?php echo $row['Tagline']; ?></h2></center>
</div>
</div>
<?php require('include/footer.php'); ?>
</body>
</html>