-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
74 lines (43 loc) · 1.23 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
<?php
session_start();
include("includes/db.php");
include("includes/header.php");
include("functions/functions.php");
include("includes/main.php");
?>
<main>
<!-- HERO -->
<div class="nero">
<div class="nero__heading">
<span class="nero__bold">About</span> us
</div>
<p class="nero__text">
</p>
</div>
</main>
<div id="content" ><!-- content Starts -->
<div class="container" ><!-- container Starts -->
<div class="col-md-12" ><!-- col-md-12 Starts -->
<div class="box" ><!-- box Starts -->
<?php
$get_about_us = "select * from about_us";
$run_about_us = mysqli_query($con,$get_about_us);
$row_about_us = mysqli_fetch_array($run_about_us);
$about_heading = $row_about_us['about_heading'];
$about_short_desc = $row_about_us['about_short_desc'];
$about_desc = $row_about_us['about_desc'];
?>
<h1> <?php echo $about_heading; ?> </h1>
<p class="lead"> <?php echo $about_short_desc; ?> </p>
<p> <?php echo $about_desc; ?> </p>
</div><!-- box Ends -->
</div><!-- col-md-12 Ends -->
</div><!-- container Ends -->
</div><!-- content Ends -->
<?php
include("includes/footer.php");
?>
<script src="js/jquery.min.js"> </script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>