Radhad
Erfahrenes Mitglied
Ich hab dein erstes Posting mal korrigiert, siehe $_POST-Variable!
PHP:
<form action="produkt.php" method="post">
<center>
<input type="text" size="25" name="Inhalt">
<input type="submit" value="Suchen">
</center>
</form>
<?php
include("db_connect.php");
$sql = "SELECT * FROM item WHERE name like '%".$_POST["Inhalt"]."%' ORDER BY name DESC";
$result = mysql_query($sql) OR die(mysql_error());
while ($row = mysql_fetch_assoc($result)) {
echo $row["name"];
}
?>
Zuletzt bearbeitet: