-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
75 lines (63 loc) · 1.92 KB
/
about.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
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
<?php
session_start();
error_reporting(0);
include('includes/dbconnection.php');
?>
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>People for animals | About </title>
<link rel="icon" href="gif/funnygifsbox.com-2019-05-22-12-24-43-5.gif">
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" media="all">
<link href="css/style.css" rel="stylesheet" type="text/css" media="all" />
<script type="application/x-javascript">
addEventListener("load", function() {
setTimeout(hideURLbar, 0);
}, false);
function hideURLbar() {
window.scrollTo(0, 1);
}
</script>
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/bootstrap.js"></script>
</head>
<body>
<?php include_once('includes/header.php'); ?>
<div class="banner-header">
<div class="container">
<h2>about</h2>
</div>
</div>
<!--about-->
<div class="content" >
<!--advantage-->
<div class="advantages">
<div class="container" style="
box-shadow: 0 1px 50px 3px rgb(148, 148, 148,0.3); border-radius:8px; padding-bottom:20px; margin-top:20px; box-sizing:content-box";>
<?php
$query = mysqli_query($con, "select * from tblpage where PageType='aboutus'");
while ($row = mysqli_fetch_array($query)) {
?>
<div class="advantages-grids">
<div class="col-md-12 advantage-grid">
<div style="text-align:left; border-radius: 10px;" class="advantage">
<h3><?php echo $row['PageTitle']; ?></h3>
<p><?php echo $row['PageDescription']; ?></p>
<div class="clearfix"></div>
</div>
</div>
<div class="clearfix"></div>
</div>
</div><?php } ?>
</div>
<!--advantage-->
<!--specials-->
<?php include_once('includes/special.php'); ?>
</div>
<!--footer-->
<?php include_once('includes/footer.php'); ?>
</body>
</html>