-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
38 lines (29 loc) · 840 Bytes
/
index.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
<?php
$ref = $_GET['r'];
if ($ref == 'fb'){
$to = '[email protected]';
$subject = 'Website Viewed Through FB';
$message = 'Someone viewed the website';
$headers = 'From: RobCleozier.com';
mail($to, $subject, $message, $headers);
}
else
{
$to = '[email protected]';
$subject = 'Website Viewed';
$message = 'Someone viewed the website';
$headers = 'From: RobCleozier.com';
mail($to, $subject, $message, $headers);
}
?>
<html>
<head>
<title>RobCleozier.Com |</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<!-- ImageReady Slices (Index.psd) -->
<img src="images/Index.gif" width="1000" height="1200" alt="">
<!-- End ImageReady Slices -->
</body>
</html>