calvinklein
Grünschnabel
hallo liebe user,
ich frage mit einem php-code eine sql-db ab. funktioniert soweit problemlos.
kurze randinfo zur tabelle:
12 zeilige tabelle mit 3 spalten: orteid, ort, kreis.
code dazu:
<body>
<table border="0" width="600">
<tr>
<td><input name="heilbronn" type="button" value="Kreis Heilbronn"></td>
<td><input name="hohenlohe" type="button" value="Kreis Hohenlohe"></td>
<td><input name="rnk" type="button" value="Kreis Rhein-Neckar"></td>
</tr>
</table>
<br><br><br>
<?php
error_reporting(E_ALL);
ini_set('display_error', true);
include("connect.inc.php");
$abfrage ="SELECT orteid, ort, kreis FROM orte"
$ergebnis = mysql_query($abfrage) or die (mysql_error());
echo("<table border=0 width=600>");
echo("<tr><td><b>Orte-ID</b></td><td><b>Ort</b></td><td><b>Kreis</b></td></tr>");
while($row = mysql_fetch_assoc($ergebnis))
{
echo("<td>" . $row["orteid"] . "</td>");
echo("<td>" . $row["ort"] . "</td>");
echo("<td>" . $row["kreis"] ."</td>");
echo("</tr>");
}
echo("</table>");
?>
</body>
wie nun auffällt, habe ich im oberen bereich des codes drei buttons erstellt. ich möchte die 12 einträge nach KREIS sortieren. es gibt 3 kreise: heilbronn, hohenlohe, rnk. diese sortierung soll per klick auf den entsprechenden button geschehen.
hat jemand einen vorschlag?
ich frage mit einem php-code eine sql-db ab. funktioniert soweit problemlos.
kurze randinfo zur tabelle:
12 zeilige tabelle mit 3 spalten: orteid, ort, kreis.
code dazu:
<body>
<table border="0" width="600">
<tr>
<td><input name="heilbronn" type="button" value="Kreis Heilbronn"></td>
<td><input name="hohenlohe" type="button" value="Kreis Hohenlohe"></td>
<td><input name="rnk" type="button" value="Kreis Rhein-Neckar"></td>
</tr>
</table>
<br><br><br>
<?php
error_reporting(E_ALL);
ini_set('display_error', true);
include("connect.inc.php");
$abfrage ="SELECT orteid, ort, kreis FROM orte"
$ergebnis = mysql_query($abfrage) or die (mysql_error());
echo("<table border=0 width=600>");
echo("<tr><td><b>Orte-ID</b></td><td><b>Ort</b></td><td><b>Kreis</b></td></tr>");
while($row = mysql_fetch_assoc($ergebnis))
{
echo("<td>" . $row["orteid"] . "</td>");
echo("<td>" . $row["ort"] . "</td>");
echo("<td>" . $row["kreis"] ."</td>");
echo("</tr>");
}
echo("</table>");
?>
</body>
wie nun auffällt, habe ich im oberen bereich des codes drei buttons erstellt. ich möchte die 12 einträge nach KREIS sortieren. es gibt 3 kreise: heilbronn, hohenlohe, rnk. diese sortierung soll per klick auf den entsprechenden button geschehen.
hat jemand einen vorschlag?