Código PHP:
<form id="codigo" method="post">
Ingrese codigo a buscar:
<label>
<input type="text" name="buscar" id="buscar" />
</label>
<label>
<input type="submit" name="buscar" id="buscar" value="Enviar" />
</label>
</form>
<?php
/**
* busqueda por codigo
*/
include("conectaBD.php");
mysql_select_db("natura", $link);
$result = mysql_query("SELECT codigo,nombres,descripcion,precio FROM productos", $link);
echo "<table border = '1'> \n";
echo "<tr> \n";
echo "<td><b>Codigo</b></td> \n";
echo "<td><b>Nombre</b></td> \n";
echo "<td><b>descripcion</b></td> \n";
echo "<td><b>Precio</b></td> \n";
echo "</tr> \n";
while ($row = mysql_fetch_row($result)){
echo "<tr> \n";
echo "<td>$row[0]</td> \n";
echo "<td>$row[1]</td> \n";
echo "<td>$row[2]</td> \n";
echo "<td>$row[3]</td> \n";
echo "</tr> \n";
}
echo "</table> \n";
?>
Pon asi tu archivo y llamalo comotukieras.php, asi te buscara y mostrara los resultados en la misma pagina ^-^