-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontactsuccess.php
More file actions
33 lines (25 loc) · 857 Bytes
/
contactsuccess.php
File metadata and controls
33 lines (25 loc) · 857 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
<?php
if($_SERVER['REQUEST_METHOD']=='GET'){
if(isset($_GET['message'])){
$mess=$_GET['message'];
}
}
?>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="direct.js"></script>
<!-- Latest compiled JavaScript -->
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Contact result</title>
</head>
<body>
<h4> <?php echo $mess;?></h4>
<a href="foreshore.php"><button class="btn btn-success">Back to Home</button></a>
</body>
</html>