-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
26 lines (25 loc) · 902 Bytes
/
index.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
<?php
include("template/front/header.php");
include("template/front/navbar.php");
include("config/database.php");
?>
<?php
$i=1;
$statement = $conn->prepare('SELECT * FROM about ORDER BY about_id DESC');
$statement->execute();
$about = $statement->fetchAll(PDO::FETCH_ASSOC);
$sNo = 1;
foreach ($about as $about);
?>
<section class="home">
<div class="image">
<img src="storage/home/<?php echo $about['about_photo']; ?>" alt="">
</div>
<div class="content">
<h3>hi, i am <?php echo $about['about_name']; ?> </h3>
<span> <?php echo $about['about_title']; ?></span>
<p><?php echo $about['about_desc']; ?></p>
<a href="tel:<?php echo $about['about_hire']; ?>" class="btn"> Get in Touch <i class="fas fa-phone"></i> </a>
</div>
</section>
<?php include("template/front/navbar.php"); ?>