-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.php
More file actions
36 lines (30 loc) · 884 Bytes
/
Copy pathabout.php
File metadata and controls
36 lines (30 loc) · 884 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<?php include ("php/head.php"); ?>
</head>
<body>
<?php include ("php/header.php"); ?>
<div class="inside-banner">
<div class="container">
<span class="pull-right"><a href="./">Principal</a> / Acerca de</span>
<h2>Acerca de</h2>
</div>
</div>
<div class="container">
<div class="spacer">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<img src="images/about.jpg" class="img-responsive thumbnail" alt="realestate"><hr>
<?php
echo $Conexion->query("SELECT content FROM about_us ORDER BY id DESC LIMIT 1;")->fetch_array(MYSQLI_ASSOC)['content'];
?>
</div>
</div>
</div>
</div>
<div class="footer">
<?php include ("php/footer.php"); ?>
</div>
</body>
</html>