hallo zusammen
ich habe folgendes problem:
ich habe eine tabelle mit drei spalten (diverses I, diverses II, diverses III).
in mysql habe ich x datensätze, die nun in die zellen eingefügt werden sollen.
das funktioniert auch soweit, aber nur zeilenweise und nicht
zellenweise. das heist, beispiel 1 steht in jeder zelle der spalte 1,
beispiel 2 in jeder zelle der spalte 2 usw.
wie man es schon vermutet, bin ich ein absoluter anfänger. mein
ziel währe eigentlich, dass in jede zelle eine datensatz erscheint.
hier noch meine code:
<?
include("filme.inc.php");
?>
<html>
<head>
<title>Filmliste</title>
<style type="text/css">
<!--
.Stil2 {
font-size: 16px;
font-weight: bold;
}
-->
</style>
</head>
<body>
<?
$res=dbquery("select * from videoverwaltung");
echo mysql_error();
echo "<table border='1'>";
echo "<tr>";
echo "<td bgcolor='#DDEAF4'><strong> <span class='fontmenu2'>Diverses</span> <span class='fontmenu2'> I</span></strong></td>";
echo "<td bgcolor='#DDEAF4'><strong> <span class='fontmenu2'>Diverses</span> <span class='fontmenu2'> II</span></strong></td>";
echo "<td bgcolor='#DDEAF4'><strong> <span class='fontmenu2'>Diverses</span> <span class='fontmenu2'> III</span></strong></td>";
echo "</tr>";
echo "<tr>";
while ($dsatz=mysql_fetch_array($res)) {
echo "<td>".$dsatz['id']."<br>".$dsatz['name']."<br>".$dsatz['titel']."<br>".$dsatz['medium']."<br>".$dsatz['anzahl']."</td>";
echo "<td>".$dsatz['id']."<br>".$dsatz['name']."<br>".$dsatz['titel']."<br>".$dsatz['medium']."<br>".$dsatz['anzahl']."</td>";
echo "<td>".$dsatz['id']."<br>".$dsatz['name']."<br>".$dsatz['titel']."<br>".$dsatz['medium']."<br>".$dsatz['anzahl']."</td>";
echo "</tr>";
}
echo "</table>";
?>
</body>
</html>
ich danke für eure hilfe.
gruss
michael
ich habe folgendes problem:
ich habe eine tabelle mit drei spalten (diverses I, diverses II, diverses III).
in mysql habe ich x datensätze, die nun in die zellen eingefügt werden sollen.
das funktioniert auch soweit, aber nur zeilenweise und nicht
zellenweise. das heist, beispiel 1 steht in jeder zelle der spalte 1,
beispiel 2 in jeder zelle der spalte 2 usw.
wie man es schon vermutet, bin ich ein absoluter anfänger. mein
ziel währe eigentlich, dass in jede zelle eine datensatz erscheint.
hier noch meine code:
<?
include("filme.inc.php");
?>
<html>
<head>
<title>Filmliste</title>
<style type="text/css">
<!--
.Stil2 {
font-size: 16px;
font-weight: bold;
}
-->
</style>
</head>
<body>
<?
$res=dbquery("select * from videoverwaltung");
echo mysql_error();
echo "<table border='1'>";
echo "<tr>";
echo "<td bgcolor='#DDEAF4'><strong> <span class='fontmenu2'>Diverses</span> <span class='fontmenu2'> I</span></strong></td>";
echo "<td bgcolor='#DDEAF4'><strong> <span class='fontmenu2'>Diverses</span> <span class='fontmenu2'> II</span></strong></td>";
echo "<td bgcolor='#DDEAF4'><strong> <span class='fontmenu2'>Diverses</span> <span class='fontmenu2'> III</span></strong></td>";
echo "</tr>";
echo "<tr>";
while ($dsatz=mysql_fetch_array($res)) {
echo "<td>".$dsatz['id']."<br>".$dsatz['name']."<br>".$dsatz['titel']."<br>".$dsatz['medium']."<br>".$dsatz['anzahl']."</td>";
echo "<td>".$dsatz['id']."<br>".$dsatz['name']."<br>".$dsatz['titel']."<br>".$dsatz['medium']."<br>".$dsatz['anzahl']."</td>";
echo "<td>".$dsatz['id']."<br>".$dsatz['name']."<br>".$dsatz['titel']."<br>".$dsatz['medium']."<br>".$dsatz['anzahl']."</td>";
echo "</tr>";
}
echo "</table>";
?>
</body>
</html>
ich danke für eure hilfe.
gruss
michael
Kommentar