next up previous contents
Next: profile.php4 Up: Quellcode Previous: convert2mysql.php4   Contents


index.php4


<?php
  /*******************************************
  /* Programm index.php4
  /* Main menu
  /* (c) Copyright 2002, Jens Bierkandt
  /* e-mail: jens@bierkandt.org
  /* Entstanden im Rahmen meiner Diplomarbeit
  /*******************************************
  */
  // Name of computers and their tables needed
  error_reporting(63); // 0 = none, 63 = full
  include("./config.php4");
  $db = mysql_connect($hostname, $username, $password);
  mysql_select_db($database, $db);
  $result = mysql_query("SELECT
    `name`,`computer`,`table_name` FROM `admin` WHERE 1",
    $db);
  echo mysql_error($db);
  $i = 0;
  while($row = mysql_fetch_row($result)) {
    $name[$i] = $row[0];
    $computer[$i] = $row[1];
    $table[$i] = $row[2];
    $i++;
  }
  mysql_close($db);
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<html>
<head>
<title>Analyse und Administration</title>
</head>
<body>
<center><a href="http://www.tu-ilmenau.de">
<img src="tu_header.jpg" width=574 height=40 align="middle"
  border=0></a>
<h1>Überwachung von Windkraftanlagen</h1>
<h2>Ein Tool zur Analyse und Administration von
  Windkraftanlagen</h2>
Ansicht der Messwerte einer Anlage, bitte wählen Sie:
  <br><br>
<form action="menugraf.php4" method="POST">
<select name="table">
<?php
  for ($i = 0; $i < sizeof($name); $i++) {
    echo "<option
      value=\"$table[$i]\">$name[$i]&nbsp;($computer[$i])</
      option>";
  }
?>
</select> &nbsp;
<input type="submit" name="Anzeigen" value="Anzeigen">
</form> <br>
Profil einer Anlage ändern, bitte wählen Sie:   <br> <br>
<form action="profile.php4" method="POST">
<select name="table">
<?php
  for ($i = 0; $i < sizeof($name); $i++) {
    echo "<option
      value=\"$table[$i]\">$name[$i]&nbsp;($computer[$i])</
      option>";
  }
?>
</select> &nbsp;
<input type="submit" name="Ändern" value="Ändern">
</form> <br>
Anlegen eines <a href="profile.php4">neuen Profils</a>
  einer Anlage<br> <br>
Log-Datei der Datendownloads <a
  href="diplom.log">ansehen</a> <br><br>
Datenbank manuell <a
  href="../diplom/phpMyAdmin/index.php">administrieren</a>
  <br><br><br >
<hr>
(c) 2002 Jens Bierkandt, entstanden im Rahmen meiner
  Diplomarbeit </center>
</body>
</html>



Jens Bierkandt