<form action ="prueba.php" method "POST" >
<strong>Numero de Cliente: </strong>
<input name="cliente" value="" size="20"><br><br>
<input type="submit" value="buscar"><br><br>
</div>
</form>
</font>
</body>
</html>
y el menu prueba esta asi
<?php $num_cliente = $_POST'cliente']; (mi duda es aqui)
$link = mysql_connect ("192.0.0.0", "usuario", "pasword");
$db = mysql_select_db ("basededatos", $link);
$strqry = "SELECT * FROM tabla where numero =\"".$num_cliente."\"";
$qry = mysql_query($strqry);
$row = mysql_fetch_assoc($qry);
if ($row ["numero"]=="") {
print '<p align="center"><font color="#006699" size="2" face="Arial"> "NUMERO DE CLIENTE O PASWORD INCORRECTOS"</font></p>';
} else {
?>
<font color="#FF0000" size="3" face="Arial">BIENVENIDO</font></p>
<font color="#006699" size="2" face="Arial"><?php print $row ["nombre"]; ?></font></p>