-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.php
56 lines (48 loc) · 1.73 KB
/
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
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width">
<link rel=stylesheet href="style.css" type="text/css">
<link rel="shortcut icon" href="flower.ico">
<title>Contact - Useful Tropical Plants</title>
</head>
<body>
<?php
include 'header.php';
?>
<p>This website and database is regularly updated, please contact us if you find any errors or bugs.</p>
<p>For queries about the website and online database contact us at:
<span id="admin-email"><b>email address hidden with javascript to reduce spamming, enable javascript in your browser to view address</b></span></p>
<script type="text/javascript">
<!--
/*
any experienced webmasters know if my method actually works at all?
*/
var urly = ":otliam".split("").reverse().join("");
var name = "nimda".split("").reverse().join("");
var domain= "ofni.snrefeht".split("").reverse().join("");
var addr = name+"@"+domain;
document.getElementById("admin-email").innerHTML="<a href=\""+urly+addr+"\">"+addr+"<\/a>";
-->
</script>
<p>You can email Ken at:
<span id="ken-email"><b>email address hidden with javascript to reduce spamming, enable javascript in your browser to view address</b></span></p>
<script type="text/javascript">
<!--
/*
any experienced webmasters know if my method actually works at all?
*/
var urly = ":otliam".split("").reverse().join("");
var name = "nek".split("").reverse().join("");
var domain= "ofni.snrefeht".split("").reverse().join("");
var addr = name+"@"+domain;
document.getElementById("ken-email").innerHTML="<a href=\""+urly+addr+"\">"+addr+"<\/a>";
-->
</script>
<?php
include 'footer.php';
mysqli_close($db);
?>
</body>
</html>