<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

	<head>
	
		<title>Los Angeles Stadt der Engel</title>
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
		<link rel='stylesheet' media='all' type="text/css" href="stylesheet.css" />
		<style type="text/css"></style>

	</head>
	
	<body>
	
		<?php 
			require_once("db_connection.php");
			require_once("ml.txt");
	
		?>	
        	
     		<div class='data' style='overflow: scroll;'>
            <div class=" ">
    		<B><p class='menue'>Wo gibt es Fahradabstellplätze?</p></B>
			</div>
		
      
		<?php
			echo "<div class=' '>\n";
			
			echo "<table>\n";
			echo "\t<tr><th>Haltestelle</th><th>Fahrradabstellplatz</th></tr>\n";
			$query = "SELECT name, bike FROM stops";
			$sth = mysql_query($query) OR die("Fehler: ". mysql_error());
			while ($object = mysql_fetch_object($sth)) {
				echo "\t<tr><td>$object->name</td><td>$object->bike</td></tr>\n";
			}
			echo "</table>\n";
			echo "</div>";
			mysql_free_result($sth);
			mysql_close($db);
		?>
		
	</body>
</html>