<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
       "http://www.w3.org/TR/html4/loose.dtd">
<?php
require_once('mysql.inc.php');
echo "<head>";
echo "<title>Alle Haltestellen</title>";
echo "<meta http-equiv='Content-Type' content='text/html; charset=utf-8'>";
echo "</head>";
echo "<body>";
echo "<h2>Alle Haltestellen</h2>
";
mysqli_select_db($dz, 'goettingen');
$sql = mysqli_query($dz, "SELECT * FROM stations");
while ($ds = mysqli_fetch_object($sql)){
  $name = $ds -> name;
  $id  = $ds -> id;
  echo 
  "<table border=1>
  <tr>
  <td width=200 height=20><b>$name</b></td>
  </tr>
  </table>";	
  }	
mysqli_close($dz);
   echo "</body>";
?>
