Fijate, seria algo asi...
Modifica los ??? de acuerdo a tu base de datos...
Código PHP:
<form action="index.php" method="post">
<input type="text" name="campo" />
<input type="submit" value="Buscar" />
</form>
<?
if ($_POST['campo']) {
$res = mysql_query("SELECT * FROM ??? WHERE ??? LIKE '".$_POST['campo']."'");
while ($arr = mysql_fetch_array($res)) {
print($arr['???']);
} // end while
} // end if
?>