Código HTML:
<form action="<?PHP $PHP_SELF ?>" method="post" >
<table width="500" height="150" border="0" align="center" class="tblformprof" cellspacing="5" cellpadding="5">
<tr>
<td width="54" class="izq">Nombre</td>
<td width="197"><label>
<input type="text" name="nombre" id="tomo" size="10">
</label></td>
<tr>
<td> </td>
<td><label>
<div align="center">
<input class="boton" type="submit" name="button" id="button" value="Buscar">
</div>
</label></td>
</table>
</form>
Código PHP:
if (isset($_POST['nombre'])) {
echo "mi variable: $nombre";
}
$query = "SELECT * FROM $Tabla WHERE nombretbl= $nombre ORDER BY nombre ASC";