PHP Abfrage mit Buttons sortieren

Hab dir mal schnell ein Formular eingefügt!

PHP:
<body>
<?
if (!isset($_POST['abschicken'])){

?>
<form action="<?=$_SERVER['PHP_SELF'];?>" method="POST" enctype="application/postscript">
<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><tr>
	<td colspan="2"><input name="abschicken" type="submit" value="Senden"></td>
</tr>
</table>
</form> 
<br><br><br>

<?php
} // ende if
Else{
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>");
}; // end Else 
?>
</body>

Mfg Splasch
 
Zuletzt bearbeitet:
Zurück