Christopher: Bidausgabe??? Falscher Quelltext!

Beitrag lesen

Hello habe es gemacht, es funk aber net seht doch selbst!!!
Was mache ich falsch??

LIVE: http://www.design-weber.at/testbild/db_ausgaben1.php

Quelltext:

<html>
<head>
<title>Inhalte ausgebeng</title>
</head>
<style type="text/css">
<!--
body { background-color:green;}
h1 { color:red; font-size:10pt; font-family:Verdana; }
h2 { color:yellow; font-size:12pt; font-family:Arial; }
h3 { color:blue; font-size:12pt; font-family:Arial; }
-->
</style>
<body>

<?
include("config.inc");
$tabelle ="bild";

$dbverbindung = mysql_connect ($host, $user, $password);

$dbanfrage = "SELECT * FROM bild ";
$result = mysql_db_query ($dbname, $dbanfrage, $dbverbindung);

while ($ausgabe = mysql_fetch_array ($result))
 {
 echo ("

<h2>$ausgabe[id]</h2>
<h1>$ausgabe[text]</h1>
<p><img border="0" src="$ausgabe[bild]"></p>");
 }

mysql_close ($dbverbindung)

?>

</body>
</html>

DANKE MFG WEBER Ch