forked from jinde0611/heremed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
61 lines (41 loc) · 1.09 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
<?php
include("includes/header.php");
$query = "SELECT * FROM about ";
$result = $conn->query($query);
?>
<div class="row pinfo_hide" style="margin-top:50px;">
<div class="col s12 m6 l10 offset-l1">
<div class="card-panel z-index-5 teal">
<span class="white-text center"><h5 class="thin">Important Information on Paramount</h5>
</span>
</div>
</div>
</div>
<div class="row pinfo_hide" style="margin-top:-10%;">
<div class="col s12 m6 l10 offset-l1">
<div class="card-panel ">
<div class="row">
<tr>
<?php
while($rows = mysqli_fetch_assoc($result)){ ?>
<td><a href="<?= $rows['about_file_path']; ?>" target="_blank"><i id="material" class="fa fa-file-pdf-o fa-5x"></i></a></td>
<td style="text-align: center;"><?php echo $rows['about_name']; ?></td>
<?php } ?>
</tr>
</div>
</div>
</div>
</div>
<style type="text/css">
#material{
color: teal ;
}
</style>
<style type="text/css">
.material-icons.md-light {
color: rgba(255, 255, 255, 1);
}
</style>
<?php
include("includes/footer.php");
?>