-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaboutus.php
155 lines (115 loc) · 4.44 KB
/
aboutus.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
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
<?php session_start();
include('connect.php');?>
<!doctype html>
<html>
<head>
<title>About us</title>
<?php include 'lib/top.php';?>
</head>
<body>
<div class="container-fluid"><!--container-fluid start-->
<div class="row">
<div class="menu-had2">
<?php include 'lib/header.php';?>
</div><!--menu-had close-->
<!--===================About Us Section==========================-->
<div class="container mg-top50">
<div class="row">
<div class="col-md-12 col-lg-12 colsm-12 col-xs-12 about-text">
<h1 class="city-had-cus">About Us</h1>
<?php $query=mysqli_query($connect,'SELECT * FROM `pages` where page_title="home"');
$row=mysqli_fetch_array($query);
?>
<p class=""><?php echo html_entity_decode($row["page_content"]);?></p>
<!--
<div class="col-md-4 col-lg-4 col-sm-4 col-xs-12 text-center">
<img class="img-responsive margin-auto hw1 icon1" src="img/easy-use1.png">
<p class="text-center about-p1 mg-top5">Easy to Use</p>
</div>
<div class="col-md-4 col-lg-4 col-sm-4 col-xs-12 text-center">
<img class="img-responsive margin-auto hw1 icon2" src="img/budget1.png">
<p class="text-center about-p2 mg-top5">Budget Friendly</p>
</div>
<div class="col-md-4 col-lg-4 col-sm-4 col-xs-12 text-center">
<img class="img-responsive margin-auto hw1 icon3" src="img/trusted1.png">
<p class="text-center about-p3 mg-top5">Verified(Trusted)</p>
</div>
-->
</div>
</div>
</div>
<!--===================How it works Section==========================-->
<div class="container">
<div class="row">
<div class="col-md-12 col-lg-12 col-sm-12 col-xs-12 mg-top50">
<h1 class="city-had-cus">How it Works?</h1>
<?php
// $query=mysqli_query($connect,'SELECT * FROM `pages` where page_title="Work"');
// $row=mysqli_fetch_array($query);
// $content=html_entity_decode($row["page_content"]);
// $text=str_ireplace('<p>','',$content);
// $text=str_ireplace('</p>','',$text);
?>
<!--<iframe class="mg-top10" width="100%" height="415" src="<?php echo $text; ?>" frameborder="0" allowfullscreen></iframe>-->
<img class="img-responsive long-img" src="images/howitworks.jpg">
</div>
</div>
</div>
<!--===================How it Works close==========================-->
<!--====================================Testimonial==========================-->
<div class="">
<div class="testimon">
<div class="container">
<div class="row">
<div><h1 class="city-had-cus1">Testimonials</h1></div>
<!--=====================test slider=================-->
<div class='col-md-offset-2 col-md-8'>
<div class="carousel slide" data-ride="carousel" id="quote-carousel">
<!-- Bottom Carousel Indicators -->
<ol class="carousel-indicators">
<?php $sql = mysqli_query($connect,"SELECT * FROm testimonials order by tid");
$i=0;
while($row=mysqli_fetch_array($sql)){
?>
<li data-target="#quote-carousel" data-slide-to="<?php echo $i++;?>" class="<?php echo $row['tactive'];?>"></li>
<?php } ?>
</ol>
<!-- Carousel Slides / Quotes -->
<div class="carousel-inner">
<?php $sql = mysqli_query($connect,"SELECT * FROm testimonials order by tid");
while($row=mysqli_fetch_array($sql)){
?>
<!-- Quote 1 -->
<div class="item <?php echo $row['tactive'];?>">
<!-- <blockquote> -->
<div class="row">
<div class="col-sm-12">
<p class="text-test"><?php echo $row['tcontent'];?></p>
<div class="ceo-name">
<center><h5><?php echo $row['tname'];?></h5></center>
<!-- <center><h5>CEO of Pineapple</h5></center> -->
</div>
</div>
</div>
<!-- </blockquote> -->
</div>
<?php }//while ?>
</div>
</div>
</div>
<!--======================test slider end==============-->
</div><!--row close-->
</div><!--container close-->
</div><!--testimon-main close-->
</div>
<!--====================================Testimonial end==========================-->
</div><!--row close-->
<!--======footer======-->
<!--======footer close======-->
</div><!--row close-->
</div><!--container-fluid close-->
</body>
</html>
<!-- <script src="js/forms-map.js"></script> -->
<?php include 'lib/footer.php'; //if isset
?>