-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconstants.php
42 lines (34 loc) · 1.49 KB
/
constants.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
<?php
/* enter your mysql info here */
define("DATABASEHOST","localhost"); // if on the same pi localhost works
define("DATABASEUSER","USERNAME"); // user name for MySql
define("DATABASEPASS","PASSWORD"); // password for MySql
define("DATABASE","fieldday");
// Done with http://www.hcidata.info/obfuscate-email-address.htm
define("EMAIL","<a href=\"mailto:kk4sxx@arrl.org\">Lee Alder (KK4SXX)</a>");
define("TITLE","K4CPO Field day web logger");
define("SHOWIT",FALSE);
$contest['START-OF-LOG:']="3.0";
$contest['Created-By:']="K4CPO Web Logger";
$contest['CONTEST:']="";
$contest['CALLSIGN:']="";
$contest['LOCATION:']="";
$contest['ARRL-SECTION:']="";
$contest['CATEGORY:']="";
$contest['CATEGORY-POWER:']="";
$contest['SOAPBOX:']="";
$contest['CLAIMED-SCORE:']="";
$contest['OPERATORS:']="";
$contest['NAME:']="";
$contest['ADDRESS:']="";
$contest['ADDRESS-CITY:']="";
$contest['ADDRESS-STATE:']="";
$contest['ADDRESS-POSTALCODE:']="";
$contest['ADDRESS-COUNTRY:']="";
$contest['EMAIL:']="";
$contestend="END-OF-LOG: ";
$textarea="SOAPBOX: 1,500 points for not using commercial power
SOAPBOX: 1,500 points for setting up outdoors
SOAPBOX: 1,500 points for setting up away from home
SOAPBOX: BONUS Total 4500 (remote location, outdoors and generator power)(example)";
?>