-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfo.php
More file actions
49 lines (40 loc) · 1.41 KB
/
Copy pathinfo.php
File metadata and controls
49 lines (40 loc) · 1.41 KB
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
<?php session_start();
require_once 'common_functions.php';
// to prevent direct access to this page
if(!isset($_POST['message']))
RedirectTo('index.php');
?>
<?php include 'contact-form-handler.php' ?>
<?php include 'header.php' ?>
<body>
<div class="brand">Best Friend Ever</div>
<div class="address-bar">Everything about dogs</div>
<?php include 'navigation.php' ?>
<div class="container">
<div class="row">
<div class="box">
<div class="col-lg-12">
<hr>
<h2 class="intro-text text-center">
<strong>Thank you for your submission</strong>
</h2>
<hr>
<p class="text-center">Here is the copy of your message:
<div class="text-success text-center" style="font-size: x-large">
<strong>
<?php echo msg(); ?>
</strong>
</div>
</p>
<p class="text-center">We appreciate that you’ve taken the time to write us. We’ll get back to you very soon. Please come back and see us often.</p>
<hr>
<p class="text-center">
<a href="index.php" class="btn btn-default btn-lg">Back to Home page</a>
</p>
</div>
</div>
</div>
</div>
<?php include 'footer.html' ?>
<?php include 'Scripts.html' ?>
</body>