1 | <html>
|
---|
2 | <head>
|
---|
3 | <meta name="Author" content="The FACT Group" />
|
---|
4 | <meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
---|
5 | <title>FACT Project</title>
|
---|
6 | <link rel="StyleSheet" type="text/css" href="../style.css" />
|
---|
7 | </head>
|
---|
8 |
|
---|
9 |
|
---|
10 | <body>
|
---|
11 |
|
---|
12 |
|
---|
13 | <a href='https://www.fact-project.org/smartfact'>Is FACT taking data?</a><br>
|
---|
14 | Who is on shift?
|
---|
15 | (from <a href='https://www.fact-project.org/shift'>FACT shift plan<a>
|
---|
16 | and <a href='https://www.fact-project.org/logbook/memberlist.php'>FACT logbook<a>)
|
---|
17 |
|
---|
18 | <?php
|
---|
19 | $date=date("Ymd", mktime(0,0,date("H"-13),date("m"), date("d"), date("Y")));
|
---|
20 | echo "<br> Night: ".$date." (date of sunset) <br>";
|
---|
21 | $query="SELECT u FROM calendar.data WHERE CONCAT(y, LPAD(m+1, 2, 0), LPAD(d,2,0))='".$date."' AND x=0 ";
|
---|
22 | //echo $query;
|
---|
23 | include ("db.php");
|
---|
24 | $db_id = mysql_connect($host, $user, $pw);
|
---|
25 | $result = mysql_query($query);
|
---|
26 | echo " Contact Info: <br>\n <ul>\n";
|
---|
27 | while ($row = mysql_fetch_row($result))
|
---|
28 | {
|
---|
29 | //echo " ".$row[0]." ";
|
---|
30 | $query2="SELECT usertitle, fid8 FROM logbook.userfields LEFT JOIN logbook.users ON (uid=ufid) WHERE username='".$row[0]."'";
|
---|
31 | //echo $query2;
|
---|
32 | $result2 = mysql_query($query2);
|
---|
33 | while ($row2 = mysql_fetch_row($result2))
|
---|
34 | {
|
---|
35 | echo "<li>".$row2[0].": ".$row2[1]."</li>\n";
|
---|
36 | }
|
---|
37 | mysql_free_result($result2);
|
---|
38 | }
|
---|
39 | echo "</ul>\n";
|
---|
40 | mysql_free_result($result);
|
---|
41 |
|
---|
42 | ?>
|
---|
43 |
|
---|
44 | </body>
|
---|
45 | </html>
|
---|