forked from waveney/chippenham
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInfoData.php
More file actions
executable file
·23 lines (21 loc) · 1.04 KB
/
InfoData.php
File metadata and controls
executable file
·23 lines (21 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
include_once("int/fest.php");
include_once("int/festfm.php");
dohead("Data Privacy",[],1);
if (isset($_REQUEST['CHECK'])) {
include_once("int/DataCheck.php");
$Email = $_REQUEST['Email'];
Sanitise($Email,'email');
Data_Check_Emails($Email);
echo "<H2 class=subtitle>Data has been checked</h2>";
echo "If you are in the database, an email has been sent with link(s) to the data - if you don't see one check your Spam trap<p>";
} else {
echo "<h2 class=subtitle>Data in our Database</h2>\n";
echo "This site does not need any cookies, unless you are a staff member logging in.<p>";
echo "The festival has a database of Dance Sides, Performers, Traders and Volunteers.<p>";
echo "If you would like to check your records, enter your email address and an email will be sent back to you allowing you to view/edit any records we have.<p>";
echo "<form method=post action=InfoData>";
echo fm_text('Email Address',$_REQUEST,'Email');
echo "<input type=submit name=CHECK value=CHECK>\n";
}
dotail();