Layout ändern bei PHP????
Christopher
- php
0 Götz
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
Hallo Christopher!
Nun will ich beider Ausgabe ne tabelle einfügen, Besser gsagtm will ich die "ID" Umrandet haben wie nur?
echo ("
<h2>$ausgabe[id]</h2>
<h1>$ausgabe[text]</h1>
<h1>$ausgabe[url]</h1> [...]");
Also, erstmal ist das so irgendwie sehr unlogisch.
Eine Überschrift 2. Ordnung steht über 2 Überschriften 1. Ordnung.
Doch auch würde ich das eher so schreiben:
echo('<h1>'.$ausgabe['id'].'</h1>[...]');
Und dann eben der h1 per CSS nen Rahmen geben, und fertig.
Ach, und SELECT * ist auch nicht soo schön ...
MfG
Götz