source: trunk/www/dch/quality.php@ 17549

Last change on this file since 17549 was 17533, checked in by Daniela Dorner, 11 years ago
added (webpage for quality plots)
File size: 892 bytes
Line 
1<html>
2<head>
3 <meta name="Author" content="Daniela Dorner" />
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<?php
9
10include ("dates.php");
11
12echo "<body>\n";
13echo "<form name='formular' action='quality.php' METHOD='GET'>\n";
14echo "quality plots for ";
15
16$date=GetDates($_GET["date"], "quality");
17$date2=date("Ymd", strtotime($date));
18$path="../quality/".date("Y/m/d", strtotime($date));
19
20echo "</form>\n";
21
22if (is_dir($path))
23{
24 //printf("<a href='%s'>more files</a>\n",$path);
25 echo "<table>\n";
26 echo "<tr>\n";
27 printf("<td><img src='%s/%s-quality.png' alt='quality'></td>\n", $path, $date2);
28 echo "</tr>\n";
29 echo "<tr>\n";
30 echo "</table>\n";
31}
32else
33 echo "No files available for ".$date.".\n";
34
35
36echo "</body>\n";
37echo "</html>\n";
38?>
Note: See TracBrowser for help on using the repository browser.