Moin Leute,
ich habe eine Seite gebastelt die alle einträge nach der ISBN NR sortiert.
Leider gibt er mir immer folgendes aus :
ISBN NR: 3-12-520700-2 (Titel: Etudes Francaises Cours Intensif, Autor: Klett)
ISBN NR: 3-14-111708-x (Titel: Etudes Francaises Cours Intensif, Autor: Klett)
ISBN NR: 3-12-520700-2 (Titel: Lese Buch 8, Autor: Westmann)
ISBN NR: 3-14-111708-x (Titel: Lese Buch 8, Autor: Westmann)
Richtig wäre:
ISBN NR: 3-12-520700-2 (Titel: Etudes Francaises Cours Intensif, Autor: Klett)
ISBN NR: 3-14-111708-x (Titel: Lese Buch 8, Autor: Westmann)
ich weiß nciht wieso er das so ausgibt?! könnt ihr mir helfen?
ich habe eine Seite gebastelt die alle einträge nach der ISBN NR sortiert.
Leider gibt er mir immer folgendes aus :
ISBN NR: 3-12-520700-2 (Titel: Etudes Francaises Cours Intensif, Autor: Klett)
ISBN NR: 3-14-111708-x (Titel: Etudes Francaises Cours Intensif, Autor: Klett)
ISBN NR: 3-12-520700-2 (Titel: Lese Buch 8, Autor: Westmann)
ISBN NR: 3-14-111708-x (Titel: Lese Buch 8, Autor: Westmann)
Richtig wäre:
ISBN NR: 3-12-520700-2 (Titel: Etudes Francaises Cours Intensif, Autor: Klett)
ISBN NR: 3-14-111708-x (Titel: Lese Buch 8, Autor: Westmann)
ich weiß nciht wieso er das so ausgibt?! könnt ihr mir helfen?
PHP-Code:
<?php
$db_server ="localhost";
$db_user ="000";
$db_pass ="000";
$db = mysql_connect($db_server,$db_user,$db_pass);
$res = mysql_db_query("00", "select * from buecher");
$num = mysql_affected_rows();
for ($i=0; $i<$num; $i++)
{
$title = mysql_result($res, $i,"title");
$autor = mysql_result($res, $i,"autor");
$fach = mysql_result($res, $i, "fach");
$klasse = mysql_result($res, $i,"klasse");
$isbn = mysql_result($res, $i, "isbn");
$info = mysql_result($res, $i, "info");
$abfrage = "SELECT * FROM buecher ORDER BY isbn";
$ergebnis = mysql_query($abfrage);
while($row = mysql_fetch_object($ergebnis))
{
echo "ISBN NR: $row->isbn (<b>Titel:</b> $title, <b>Autor:</b> $autor)<br>";
}
}
?>
Kommentar