-
Notifications
You must be signed in to change notification settings - Fork 0
/
care_taker.php
64 lines (57 loc) · 1.62 KB
/
care_taker.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
<?php
include("header.php");
?>
<style>
.border-button1 a {
display: inline-block !important;
padding: 10px 20px !important;
color: #ffff !important;
border: 1px solid #ff0000;
text-transform: capitalize;
font-size: 15px;
display: inline-block;
background-color: #ff0000;
border-radius: 23px;
font-weight: 500 !important;
letter-spacing: 0.3px !important;
transition: all .5s;
}
</style>
<div id="services" class="services section">
<div class="container">
<div class="row">
<div class="col-lg-8 offset-lg-2">
<div class="section-heading">
<h4><em>Spectrum</em> Skills</h4>
<img src="assets/images/heading-line-dec.png" alt="">
<p>Compassionate support hub for parents and caregivers offering guidance, community, and resilience.</p>
</div>
</div>
<?php
include("connection.php");
$sel = "select * from care_taker";
$res = mysqli_query($con, $sel);
$i=1;
while ($row = mysqli_fetch_array($res)) {
?>
<div class="col-lg-4">
<div class="pricing-item-regular">
<span class="price"></span>
<h4><?php echo $row['title']; ?></h4>
<div class="icon" style="border-radius: 30px; overflow: hidden;">
<video width="100%" height="100%" controls style="border: 10px solid #D5EEFF; border-radius: 30px;">
<source src="admin/care_taker/uploads/<?php echo $row['video']; ?>" type="video/mp4">
</video>
</div>
<br><br>
</div>
</div>
<?php
}
?>
</div>
</div>
</div>
<?php
include("footer.php");
?>