Christopher: Layout ändern bei PHP????

Beitrag lesen

Grüß euch! Ne frage habe ich:

Hab eine PHP-Datei, die mit ner mysql datenbank verbunden wird/ist.

Nun will ich beider Ausgabe ne tabelle einfügen, Besser gsagtm will ich die "ID" Umrandet haben wie nur?

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

QUELLTEXT:

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

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

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

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

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

<h2>$ausgabe[id]</h2>
<h1>$ausgabe[text]</h1>
<h1>$ausgabe[url]</h1>

<h3><p><img border="1" src="$ausgabe[url]"></p></h3><hr>");
 }

mysql_close ($dbverbindung)

?>

</body>
</html>
++++++++++++++++++++++++++

MFG WEBER CH