-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.php
48 lines (38 loc) · 960 Bytes
/
contact.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
<?php
$topic= 'Contact';
include '.include/utilities.php';
$con = iap_sql_connect();
$topics_list = iap_get_topics($con);
?>
<!DOCTYPE HTML>
<!--
TXT 2.0 by HTML5 UP
html5up.net | @n33co
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Contact - I AM PHILOSOPHER</title>
<?php include '.include/topic_html_head.html'; ?>
</head>
<body>
<!-- Header -->
<?php include '.include/topic_header.php'; ?>
<!-- Nav -->
<?php include '.include/navbar.php'; ?>
<!-- Footer -->
<footer id="footer" class="container">
<div class="row">
<div class="12u">
<!-- Contact -->
<?php echo file_get_contents('.include/footer_contact.html'); ?>
</div>
</div>
<div class="row">
<!-- Copyright -->
<?php echo file_get_contents('.include/copyright.html'); ?>
</div>
</footer>
<!-- /Footer -->
</body>
</html>